-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
33 lines (31 loc) · 1.01 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytoniq-core",
version="0.1.41",
author="Maksim Kurbatov",
author_email="cyrbatoff@gmail.com",
description="TON Blockchain SDK",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages('.', exclude=['.idea', 'tests', 'examples', 'pytoniq_core/tlb/generator.py']),
include_package_data=True,
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_core"],
install_requires=[
"pycryptodomex>=3.18.0",
"bitarray>=2.6.0",
"requests>=2.31.0",
"x25519>=0.0.2",
"setuptools>=65.5.1",
"PyNaCl>=1.5.0"
]
)