-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (36 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
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
VERSION = '0.3.7'
DESCRIPTION = 'FluidSim Circuits Analyzer & PLC ST Code Generator'
# Setting up
setup(
name="FluidPyPLC",
version=VERSION,
author="MrLostInTheInternet (Eugen Iofciu Vasile)",
author_email="<[email protected]>",
license="GPLv3",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/MrLostInTheInternet/FluidPyPLC",
packages=find_packages(),
package_data={
'FluidPyPLC': ['resources/config.json'],
},
include_package_data=True,
install_requires=['PySimpleGUI', 'matplotlib', 'tk', 'ttkbootstrap', 'pillow'],
entry_points={
'console_scripts': [
'fluidpy = FluidPyPLC.f:main',
]},
keywords=['python', 'plc', 'fluidsim', 'structured text', 'plc python', 'codesys', 'circuits', 'pneumatics', 'oleodynamics', 'plc programming'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)