From 971c15423bbc3c090c28eca7a50caf90a5ad5411 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 27 Sep 2023 13:38:46 +0300 Subject: 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 --- setup.py | 9 +++++---- 1 file 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 -- cgit v1.2.3