-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
55 lines (50 loc) · 1.15 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
extras_require = dict(
test=[
'django',
'djangorestframework',
'pytest',
'pytest-cov',
'pytest-django',
'web3[dev]>=6.7.0',
],
ethereum=[
'web3>=6.7.0', # no [dev] for persistent deployments
],
tezos=[
'pytezos>3.4',
'pymich>=0.9.8',
],
binary=[
'pysodium',
'secp256k1',
'fastecdsa',
],
)
extras_require['all'] = []
for name, deps in extras_require.items():
if name == 'binary':
continue
extras_require['all'] += deps
setup(
name='djwebdapp',
versioning='dev',
setup_requires='setupmeta',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'django-model-utils',
'djfernet>=0.8.1',
'django-picklefield>=3.0.1',
'networkx==2.8.8',
'mnemonic',
],
extras_require=extras_require,
author='James Pic',
author_email='[email protected]',
url='https://yourlabs.io/oss/djwebdapp',
include_package_data=True,
license='MIT',
keywords='cli',
python_requires='>=3.8',
)