-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup.cfg, deleted setup.py and added build time requirements in pyproject.toml to shift the build process to PEP 517.
- Loading branch information
Showing
3 changed files
with
34 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build-system] | ||
requires = ["cython", "setuptools", "wheel"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
# Changes required for PyPI | ||
[metadata]: | ||
description-file = README.md | ||
name = vcf2fhir | ||
version = 0.0.17 | ||
description = Convert .vcf files to HL7 FHIR standard | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
license = Apache Software License | ||
author = "" | ||
author_email = [email protected] | ||
url = https://github.com/elimuinformatics/vcf2fhir | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: Apache Software License | ||
|
||
[options] | ||
test_suite = vcf2fhir.test.test_vcf2fhir.suite | ||
setup_requires = | ||
setuptools | ||
packages = | ||
vcf2fhir | ||
vcf2fhir.test | ||
python_version = >=3.6 | ||
install_requires = | ||
Cython>=0.29.21 | ||
fhirclient==3.2.0 | ||
pysam | ||
pandas | ||
pytz>=2019.3 | ||
pyVCF>=0.6.8 | ||
pyranges>=0.0.96 | ||
tests_require = | ||
unittest |