-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
from django_esidoc import __version__
setup(
name="django-esidoc",
version=__version__,
description="Handle login and ticket validation for french ent (Esidoc, HDF and Occitanie)",
url="https://github.com/briefmnews/django-esidoc",
author="Brief.me",
author_email="tech@brief.me",
license="GNU GPL v3",
packages=["django_esidoc", "django_esidoc.migrations"],
python_requires=">=3.7",
install_requires=[
"Django>=3.2",
"djangorestframework>=3.8.2",
"python-cas>=1.4.0",
"lxml>=4.7",
"requests>=2.19.1",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
include_package_data=True,
zip_safe=False,
)