-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
50 lines (48 loc) · 1.75 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
43
44
45
46
47
48
49
50
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tonutils",
version="0.2.2",
author="nessshon",
description=(
"Tonutils is a high-level, object-oriented Python library "
"designed to facilitate seamless interactions with the TON blockchain."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nessshon/tonutils",
project_urls={
"Examples": "https://github.com/nessshon/tonutils/tree/main/examples",
"Source": "https://github.com/nessshon/tonutils",
"TON Blockchain": "https://ton.org",
},
packages=setuptools.find_packages(include=["tonutils", "tonutils.*"]),
package_data={"tonutils": ["py.typed"]},
python_requires=">=3.10",
install_requires=[
"aiohttp~=3.10.11",
"cachetools~=5.5.0",
"pycryptodomex~=3.20.0",
"PyNaCl~=1.5.0",
"pytoniq-core~=0.1.36",
],
extras_require={
"pytoniq": ["pytoniq~=0.1.39"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Environment :: Console",
],
keywords="TON, The Open Network, TON blockchain, blockchain, crypto, asynchronous, smart contracts",
license="MIT",
)