-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
42 lines (40 loc) · 1.14 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="graviton",
version="0.9.0",
url="https://github.com/algorand/graviton",
description="verify your TEAL program by experiment and observation",
long_description=long_description,
author="Algorand",
author_email="[email protected]",
python_requires=">=3.9",
install_requires=[
"py-algorand-sdk>=2.0.0,<3.0.0",
"tabulate==0.9.0",
],
extras_require={
"development": [
"black==22.10.0",
"flake8==5.0.4",
"mypy==0.990",
"pytest==7.2.0",
"pytest-xdist==3.0.2",
"types-tabulate==0.9.0.0",
],
"notebooks": [
"nbmake==1.3.0",
"pandas==1.4.2",
"plotly==5.7.0",
"retrolab==0.3.20",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={"graviton": ["py.typed"]},
packages=find_packages(),
)