-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
32 lines (30 loc) · 936 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytoniq",
version="0.1.40",
author="Maksim Kurbatov",
author_email="[email protected]",
description="TON Blockchain SDK",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages('.', exclude=['tests', 'examples']),
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
],
url="https://github.com/yungwine/pytoniq",
python_requires='>=3.9',
py_modules=["pytoniq"],
install_requires=[
"pytoniq-core>=0.1.35",
"requests>=2.31.0",
"setuptools>=65.5.1",
],
extras_require={
'tvm': ['pytvm>=0.0.11'],
}
)