-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
67 lines (64 loc) · 2.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import setuptools
with open('README.whl', 'r') as fh:
long_description = fh.read()
setuptools.setup(
version = '1.09',
author = 'Stephan Avenwedde',
author_email = '[email protected]',
license = 'GPLv3',
description='Graphical automation tool',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/hANSIc99/Pythonic',
packages = ['Pythonic', 'Pythonic.executables'],
package_dir = { '' : 'src'},
package_data = { '' :
[
'public_html/static/ManualScheduler.png',
'public_html/static/Scheduler.png',
'public_html/static/ManualStopProcess.png',
'public_html/static/StopProcess.png',
'public_html/static/GenericPipe.png',
'public_html/static/GenericProcess.png',
'public_html/static/ProcessPipe.png',
'public_html/static/GPIO_Read.png',
'public_html/static/GPIO_Write.png',
'public_html/static/Telegram.png',
'public_html/static/CCXT.png',
'public_html/static/CCXT_Method.png',
'public_html/static/python.ico',
'public_html/static/qtlogo.svg',
'public_html/static/qtloader.js',
'public_html/static/*.js',
'public_html/static/*.wasm',
'public_html/static/*.data',
'public_html/templates/*.html',
'public_html/config/Toolbox/0Basic/*',
'public_html/config/Toolbox/1IO/*',
'public_html/config/Toolbox/2Connectivity/Telegram.editor',
'public_html/config/Toolbox/2Connectivity/0Telegram.json',
'public_html/config/Toolbox/3Trading/*'
]
},
entry_points = {
'console_scripts' : ['Pythonic = Pythonic.script:run']
},
python_requires = '>=3.7',
classifiers = [
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 4 - Beta',
'Intended Audience :: Manufacturing',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Environment :: Console',
'Natural Language :: English',
'Topic :: Software Development'
],
)