forked from elimuinformatics/vcf2fhir
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (32 loc) · 955 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="vcf2fhir",
version="0.0.11",
author="",
test_suite='vcf2fhir.test.test_vcf2fhir.suite',
author_email="[email protected]",
description="Convert .vcf files to HL7 FHIR standard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/openelimu/VCF-2-FHIR",
packages=['vcf2fhir', 'vcf2fhir.test'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
],
tests_require = [
'unittest',
],
install_requires=[
'fhirclient==3.2.0',
'pysam',
'pandas',
'pytz >= 2019.3',
'pyVCF >=0.6.8',
'pyranges >= 0.0.79'
],
python_requires='>=3.6',
)