2019-03-28 15:10:16 +00:00
|
|
|
from setuptools import setup, find_packages
|
2019-03-27 16:28:20 +00:00
|
|
|
|
2019-04-22 10:07:55 +00:00
|
|
|
|
|
|
|
deps = {
|
|
|
|
'pyspec': [
|
2019-03-27 16:28:20 +00:00
|
|
|
"eth-utils>=1.3.0,<2",
|
|
|
|
"eth-typing>=2.1.0,<3.0.0",
|
|
|
|
"pycryptodome==3.7.3",
|
|
|
|
"py_ecc>=1.6.0",
|
2019-04-22 10:07:55 +00:00
|
|
|
],
|
|
|
|
'test': [
|
|
|
|
"pytest>=3.6,<3.7",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
deps['dev'] = (
|
|
|
|
deps['pyspec'] +
|
|
|
|
deps['test']
|
|
|
|
)
|
|
|
|
|
|
|
|
install_requires = deps['pyspec']
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyspec',
|
2019-04-23 02:15:01 +00:00
|
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
2019-04-22 10:07:55 +00:00
|
|
|
install_requires=install_requires,
|
|
|
|
extras_require=deps,
|
2019-03-27 16:28:20 +00:00
|
|
|
)
|