-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
92 lines (83 loc) · 2.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages
from setuptools import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
requirements = [
"Click>=6.0",
"guillotina>=5.3.39, <6.0.0a1",
"guillotina_elasticsearch==5.0.0",
"fhirpath>=0.6.1",
]
setup_requirements = ["pytest-runner"]
test_requirements = [
"pytest>=5.4.0",
"pytest-asyncio>=0.10.0",
"pytest-cov",
"pytest-mock",
"pytest-docker-fixtures",
"async-asgi-testclient"
]
docs_requirements = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-httpdomain",
"sphinxcontrib-httpexample",
]
lint_requirements = [
"flake8==3.7.8",
"flake8-isort==2.7.0",
"isort",
"black"
]
setup(
author="Md Nazrul Islam",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="A guillotina framework powered fhirpath provider.",
project_urls={
"CI: Travis": "https://travis-ci.com/nazrulworld/fhirpath_guillotina",
"Coverage: codecov": (
"https://codecov.io/github/nazrulworld/"
"fhirpath_guillotina"),
"Docs: RTD": "https://fhirpath-guillotina.readthedocs.io/",
"GitHub: issues": "https://github.com/nazrulworld/fhirpath_guillotina/issues",
"GitHub: repo": "https://github.com/nazrulworld/fhirpath_guillotina",
},
entry_points={
"console_scripts": ["fhirpath_guillotina=fhirpath_guillotina.cli:main"]
},
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + "\n\n" + history,
include_package_data=True,
keywords="fhirpath guillotina hl7 fhir fhirpath",
name="fhirpath_guillotina",
packages=find_packages(include=["fhirpath_guillotina"]),
setup_requires=setup_requirements,
extras_require={
"test": test_requirements + setup_requirements,
"docs": docs_requirements,
"travis": test_requirements + setup_requirements + lint_requirements
},
python_requires=", ".join((">=3.7", )),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/nazrulworld/fhirpath_guillotina",
version="0.4.1.dev0",
zip_safe=False,
)