diff options
| author | Frederick Muriuki Muriithi | 2026-05-21 13:47:44 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-05-21 14:40:55 -0500 |
| commit | 413abcbb2073773f96e5a8945c1477374d6dfae8 (patch) | |
| tree | 53258974f727c0ee9ad97475abfbf07086d676af /setup.py | |
| parent | 4324f2432390392c8022beab480d8bc911682d1f (diff) | |
| download | gn-auth-413abcbb2073773f96e5a8945c1477374d6dfae8.tar.gz | |
Use pyproject.toml in place of setup.py and friends.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/setup.py b/setup.py deleted file mode 100755 index c7339e2..0000000 --- a/setup.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env python -"""Setup script for GeneNetwork Auth package.""" -from setuptools import setup, find_packages -from setup_commands import RunTests - -LONG_DESCRIPTION = """ -gn-auth project is the authentication/authorisation server to be used -across all GeneNetwork services. -""" - -setup(author="Frederick M. Muriithi", - author_email="fredmanglis@gmail.com", - description=( - "Authentication/Authorisation server for GeneNetwork Services."), - install_requires=[ - "argon2-cffi>=20.1.0", - "click", - "Flask>=1.1.2", - "mypy>=0.790", - "mypy-extensions>=0.4.3", - "mysqlclient>=2.0.1", - "pylint>=2.5.3", - "pymonad", - "redis>=3.5.3", - "requests>=2.25.1", - "flask-cors", # with the `>=3.0.9` specification, it breaks the build - "gn-libs>=0.0.0" - ], - include_package_data=True, - packages=find_packages( - where=".", - exclude=( - "tests", - "tests.*", - "setup_commands", - "setup_commands.*")), - # `package_data` doesn't seem to work. Use MANIFEST.in instead - scripts=[], - license="AGPLV3", - long_description=LONG_DESCRIPTION, - long_description_content_type="text/markdown", - name="gn-auth", - url="https://github.com/genenetwork/gn-auth", - version="0.0.1", - tests_require=["pytest", "hypothesis"], - cmdclass={ - "run_tests": RunTests # type: ignore[dict-item] - }) |
