24 lines
652 B
Python
24 lines
652 B
Python
|
import setuptools
|
||
|
|
||
|
with open("README.md", "r") as file:
|
||
|
long_description = file.read()
|
||
|
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="authens",
|
||
|
version="0.1b0",
|
||
|
author="Klub Dev ENS",
|
||
|
author_email="klub-dev@ens.fr",
|
||
|
description="CAS Authentication at the ENS",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://git.eleves.ens.fr/klub-dev-ens/authens",
|
||
|
packages=setuptools.find_packages(),
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
python_requires=">=3.5",
|
||
|
)
|