aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-09-27 13:38:46 +0300
committerFrederick Muriuki Muriithi2023-09-27 13:38:46 +0300
commit971c15423bbc3c090c28eca7a50caf90a5ad5411 (patch)
tree5accb3a7d22216f2446bdf02eb34cc2b54b21875
parentf4b9e51192a8dea3399ca83226a47a518b3ea5c5 (diff)
downloadgn-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-xsetup.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 573adb4..d5c8aed 100755
--- a/setup.py
+++ b/setup.py
@@ -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