-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
65 lines (60 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
find_packages,
setup,
)
extras_require = {
'linter': [
"flake8==3.8.3",
"isort>=4.2.15,<5.4.3",
"importlib-metadata<5.0"
],
'dev': [
"bumpversion==0.6.0",
"click==7.1.2",
"freezegun==1.2.2",
"mock==4.0.2",
"pytest==7.1.3",
"pytest-cov==2.8.1",
"Random-Word==1.0.4",
"twine==4.0.2",
"when-changed"
],
'hw-wallet': [
"ledgerblue==0.1.47"
]
}
extras_require['dev'] = (
extras_require['linter'] + extras_require['dev'] + extras_require['hw-wallet']
)
setup(
name='skale.py',
version='7.0',
description='SKALE client tools',
long_description_markdown_filename='README.md',
author='SKALE Labs',
author_email='[email protected]',
url='https://github.com/skalenetwork/skale.py',
include_package_data=True,
install_requires=[
"asyncio==3.4.3",
"pyyaml==6.0",
"redis==5.0.3",
"sgx.py==0.9dev2",
"skale-contracts==1.0.1a5",
"typing-extensions==4.9.0",
"web3==6.13.0"
],
python_requires='>=3.7,<4',
extras_require=extras_require,
keywords='skale',
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
]
)