-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (26 loc) · 917 Bytes
/
setup.py
File metadata and controls
33 lines (26 loc) · 917 Bytes
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
from setuptools import setup, find_packages
def parse_requirements(filename: str) -> list[str]:
with open(filename, "r") as file:
return [line.strip() for line in file if line.strip() and not line.startswith("#")]
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="fhir_aggregator_client",
version="0.2.1",
packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
install_requires=parse_requirements("requirements.txt"),
long_description=long_description,
long_description_content_type='text/markdown',
author='walsbr',
author_email='walsbr@ohsu.edu',
url='https://github.com/FHIR-Aggregator/fhir-aggregator-client.git',
extras_require={
'dtale': ['dtale'],
},
entry_points={
"console_scripts": [
"fq=fhir_aggregator_client:cli.cli",
],
},
include_package_data=True,
)