forked from mhcomm/pypeman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (62 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
from importlib import import_module
VERSION = import_module("pypeman").__version__
URL = import_module("pypeman").__url__
with open("./README.rst") as desc_file:
long_description = desc_file.read()
setup(
name="pypeman",
version=VERSION,
description="Minimalistic but pragmatic ESB / ETL / EAI in Python",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Healthcare Industry",
"Operating System :: POSIX :: Linux",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Programming Language :: Python",
],
keywords="esb etl eai pipeline data processing asyncio http ftp hl7",
url=URL,
author="Jeremie Pardou",
author_email="jeremie@jeremiez.net",
license="Apache Software License",
packages=["pypeman", "pypeman.helpers", "pypeman.contrib"],
entry_points={
"console_scripts": [
"pypeman = pypeman.commands:cli",
]
},
test_suite="nose.collector",
install_requires=[
"click",
"daemonlite",
"websockets<7",
"aiohttp",
"jsonrpcclient[websockets]<=2.5.2",
"jsonrpcserver<4",
"sqlitedict",
# TODO Remove next dependency as soon as jsonrpcclient is removed
"requests"
],
extras_require={
"hl7": ["hl7"],
"xml": ["xmltodict"],
"time": ["aiocron"],
"all": ["hl7", "xmltodict", "aiocron"]
},
setup_requires=["pytest-runner"],
tests_require=[
"pytest", "pytest-cov", "pytest-asyncio"
],
include_package_data=True,
)