-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·38 lines (35 loc) · 1.06 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
#!/usr/bin/env python3
import os
import setuptools
version = {}
with open("mllp_http/version.py", "r") as f:
exec(f.read(), version)
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
author="Rivet Health",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
description="Translate between MLLP and HTTP",
entry_points={
"console_scripts": [
"mllp2http=mllp_http.main:mllp2http",
"http2mllp=mllp_http.main:http2mllp",
]
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests"],
name="mllp-http",
packages=setuptools.find_packages(),
project_urls={
"Issues": "https://github.com/rivethealth/mllp-http/issues",
},
url="https://github.com/rivethealth/mllp-http",
version=version["__version__"],
)