-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 886 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries",
]
setup(
name='DeSW',
version='0.0.3',
packages=['desw'],
url='https://github.com/WalletGuild/desw',
license='MIT',
classifiers=classifiers,
author='WalletGuild',
author_email='support@gitguild.com',
description='A centralized ledger suitable for use like a cryptocurrency hot wallet.',
setup_requires=['pytest-runner'],
package_data={'desw': ['static/swagger.json']},
install_requires=[
'sqlalchemy>=1.0.9',
'sqlalchemy-models>=0.0.6',
"flask>=0.10.0",
"flask-login",
"flask-cors",
"alchemyjsonschema"
],
tests_require=['pytest', 'pytest-cov'],
extras_require={"build": ["flask-swagger"]}
)