Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PyPI package generation #122

Merged
merged 11 commits into from
Nov 1, 2021
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -325,5 +325,3 @@ pypi:
rm -f dist/*
$(RUN) python setup.py sdist bdist_wheel
$(RUN) twine upload dist/*
git commit -am 'post twine push'
git push --tags
9 changes: 4 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ long_description = CRDC-H model in LinkML, developed by the Center for Cancer Da
# should change, but be careful not to overwrite the existing ccdhmodel docs yet
# no, this is probably just what appears on the package's PyPI page
# see also url
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html says
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html says
# home-page is an alias for url
# note hyphen vs underscore!
home_page = https://cancerdhc.github.io/ccdhmodel
Expand All @@ -36,18 +36,17 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
keywords =
python
google-sheets
linkml

[options]
include_package_data = True
install_requires = linkml-runtime
py_modules = crdch_model/crdch_model

[files]
packages =
crdch_model

data-files = model = model/*
crdch_model/graphql = crdch_model/graphql/*
crdch_model/jsonschema = crdch_model/jsonschema/*
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
sys.exit(1)

setup(
version = '1.1'
version = '1.1.2'
)