-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
43 lines (39 loc) · 1.32 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
import os
from setuptools import setup
import simpylc as sp
def read (*paths):
with open (os.path.join (*paths), 'r') as aFile:
return aFile.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 = '[email protected]',
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',
],
)