29 lines
495 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2019-04-22 18:07:55 +08:00
deps = {
'pyspec': [
"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 18:07:55 +08:00
],
'test': [
"pytest>=3.6,<3.7",
],
}
deps['dev'] = (
deps['pyspec'] +
deps['test']
)
install_requires = deps['pyspec']
setup(
name='pyspec',
2019-04-23 10:15:01 +08:00
packages=find_packages(exclude=["tests", "tests.*"]),
2019-04-22 18:07:55 +08:00
install_requires=install_requires,
extras_require=deps,
)