forked from cwaldbieser/jhub_remote_user_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·51 lines (43 loc) · 1.63 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
def read(path):
with open(path, "r") as _file:
return _file.read()
def read_req(name):
path = os.path.join(here, name)
return [req.strip() for req in read(path).splitlines() if req.strip()]
version_ns = {}
with open(os.path.join(here, "version.py")) as f:
exec(f.read(), {}, version_ns)
long_description = open("README.rst").read()
setup(
name="jhub-authenticators",
version=version_ns["__version__"],
description="A collection of HTTP(s) JupyterHub Header Authenticators,"
"including a Header, and Dummy authenticator",
long_description=long_description,
author="Rasmus Munk",
author_email="munk1@live.dk",
license="GPLv3",
keywords=["Interactive", "Interpreter", "Shell", "Web"],
url="https://github.com/ucphhpc/jhub-authenticators",
packages=find_packages(),
install_requires=read_req("requirements.txt"),
extras_require={
"test": read_req("tests/requirements.txt"),
"dev": read_req("requirements-dev.txt"),
},
project_urls={"Source Code": "https://github.com/ucphhpc/jhub-authenticators"},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
platforms="Linux, Mac OSX",
)