-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
47 lines (41 loc) · 1.37 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
import os
from setuptools import setup, find_packages
from os.path import dirname, join
with open(join(dirname(__file__), "README.md"), "r") as f:
long_description = f.read()
version = os.environ.get('PYTONLIB_VERSION', 'dev')
setup(
author='K-Dimentional Tree',
author_email='[email protected]',
name='pytonlib',
version=version,
packages=find_packages('.', exclude=['tests']),
install_requires=[
'crc16>=0.1.1',
'tvm_valuetypes==0.0.12',
'requests>=2.27.1'
],
package_data={
'pytonlib': ['distlib/linux/*',
'distlib/darwin/*',
'distlib/freebsd/*',
'distlib/windows/*',],
'pytonlib.utils': [],
'': ['requirements.txt']
},
zip_safe=True,
python_requires='>=3.7',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: Other/Proprietary License",
"Topic :: Software Development :: Libraries"
],
url="https://github.com/toncenter/pytonlib",
description="Python API for TON (Telegram Open Network)",
long_description_content_type="text/markdown",
long_description=long_description,
)