diff options
author | Frederick Muriuki Muriithi | 2023-09-27 13:38:46 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-09-27 13:38:46 +0300 |
commit | 971c15423bbc3c090c28eca7a50caf90a5ad5411 (patch) | |
tree | 5accb3a7d22216f2446bdf02eb34cc2b54b21875 | |
parent | f4b9e51192a8dea3399ca83226a47a518b3ea5c5 (diff) | |
download | gn-auth-971c15423bbc3c090c28eca7a50caf90a5ad5411.tar.gz |
Update setup.py
- Update the name and version
- Include the whole of gn-auth in the `packages` list
- Include any non-python files in the install
-rwxr-xr-x | setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4,7 +4,7 @@ from setuptools import setup from setup_commands import RunTests LONG_DESCRIPTION = """ -GeneNetwork-Auth project is the authentication/authorisation server to be used +gn-auth project is the authentication/authorisation server to be used across all GeneNetwork services. """ @@ -26,14 +26,15 @@ setup(author="Frederick M. Muriithi", "flask-cors==3.0.9" "xapian-bindings" ], + include_package_data=True, scripts=[], license="AGPLV3", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", - name="GeneNetwork-Auth", - package_dir = {'': "gn_auth"}, + name="gn-auth", + packages = ["gn_auth"], url="https://github.com/genenetwork/gn-auth", - version="0.0.0", + version="0.0.1", tests_require=["pytest", "hypothesis"], cmdclass={ "run_tests": RunTests ## testing |