-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.36 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
from setuptools import setup, find_packages
__version__ = '1.0.0'
setup(
name='fhir_etl',
version=__version__,
description="FHIR (Fast Healthcare Interoperability Resources) ETL.",
long_description=open('README.md').read(),
url='https://github.com/FHIR-Aggregator/FHIR-ETL',
author='https://fhir-aggregator.org',
packages=find_packages(),
entry_points={
'console_scripts': ['fhir_etl = fhir_etl.cli:cli']
},
install_requires=[
'charset_normalizer',
'idna',
'certifi',
'requests',
'pydantic',
'pytest',
'click',
'pathlib',
'orjson',
'tqdm',
'uuid',
'openpyxl',
'pandas',
'inflection',
'iteration_utilities',
'gen3-tracker>=0.0.7rc2',
'fhir.resources==8.0.0b4' # FHIR® (Release R5, version 5.0.0)
],
tests_require=['pytest'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
platforms=['any'],
python_requires='>=3.13, <4.0',
)