-
Notifications
You must be signed in to change notification settings - Fork 150
/
setup.py
49 lines (45 loc) · 1.28 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
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()
with open(join(dirname(__file__), "requirements.txt")) as file:
install_requires = file.read().split('\n')
version = 'v0.1'
setup(
author='igroman787',
author_email='igroman787',
name='mytonctrl',
version=version,
packages=find_packages('.', exclude=['tests']),
install_requires=install_requires,
package_data={
'mytoninstaller.scripts': ['*.sh'],
'mytoncore': [
'contracts/**/*',
'complaints/*'
],
'mytonctrl': [
'resources/*',
'scripts/*',
'migrations/*.sh'
],
'': ['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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: Other/Proprietary License",
"Topic :: Software Development :: Libraries"
],
url="https://github.com/ton-blockchain/mytonctrl",
description="MyTonCtrl",
long_description_content_type="text/markdown",
long_description=long_description,
)