-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.2 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
### Added feature: HTTPS to MLLP
### By Tiago Rodrigues
### Sectra Iberia, Dec 2022
import setuptools
version = {}
with open("mllp_https_gui/version.py", "r") as f:
exec(f.read(), version)
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
author="Tiago Rodrigues/SECTRA Iberia",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
license="MIT",
description="GUI to install and configure mllp-https",
entry_points={
"console_scripts": [
"mllp_https_gui=mllp_https_gui.main:gui",
]
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"mllp-https",
"pysimplegui",
],
name="mllp_https_gui",
packages=setuptools.find_packages(),
include_package_data=True,
project_urls={
"Issues": "https://github.com/tiagoepr/mllp-https/issues",
},
url="https://github.com/tiagoepr/mllp-https",
version=version["__version__"],
)