-
geant-release-service authoredgeant-release-service authored
setup.py 695 B
"""Setup script for the sage-validation package."""
from setuptools import find_packages, setup
setup(
name="sage-validation",
version="0.7",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Django>=5.0,<5.1",
"mssql-django==1.5",
"djangorestframework==3.15.2",
"social-auth-app-django==5.4.3",
"psycopg[binary,pool]",
],
extras_require={
"prod": [
"gunicorn",
"uvicorn",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: Django",
"Operating System :: OS Independent",
],
python_requires=">=3.10"
)