-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.21 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
test_deps = [
"pytest==4.4.1",
"eth-tester==0.1.0b39",
"web3==5.0.0b2",
"web3[tester]",
]
extras = {
"test": test_deps,
}
setuptools.setup(
name="computable",
version="3.0.1",
author="computable.io",
author_email="[email protected]",
description="Higher Order Contracts and helpers for the Computable Protocol",
keywords="computable, ethereum, blockchain",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/computablelabs/computable.py",
packages=setuptools.find_packages(exclude="tests"),
python_requires=">=3.6", # NOTE: web3 may have issues with 3.7 and above
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
tests_require=test_deps,
extras_require=extras,
package_data={
"":["**/*.abi", "**/*.bin"],
}
)