Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
43 lines (39 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (39 loc) · 1.32 KB
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
importos
fromsetuptoolsimportsetup
importsimpylcassp
defread (*paths):
withopen (os.path.join (*paths), 'r') asaFile:
returnaFile.read()
setup (
name='SimPyLC',
version=sp.base.programVersion,
description='SimPyLC PLC simulator, after its C++ big brother that has controlled industrial installations for more than 25 years now. ARDUINO CODE GENERATION ADDED!',
long_description= (
read ('README.rst') +'\n\n'+
read ('qQuickLicense.txt')
),
keywords= ['PLC', 'Arduino','simulator', 'SimPyLC', 'emulator', 'GEATEC'],
url='http://www.qquick.org/educational',
license='qQuickLicence',
author='Jacques de Hooge',
author_email='jacques.de.hooge@qquick.org',
packages= ['simpylc'],
include_package_data=True,
install_requires= [
'numpy',
'pyopengl',
'windows-curses; platform_system == "Windows"'
],
entry_points= {},
classifiers= [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: Other/Proprietary License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.10',
],
)