forked from nebari-dev/nebari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (63 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
from os import path
root_dir = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(root_dir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
__version__ = None
exec(open(path.join(root_dir, "qhub/version.py")).read()) # Load __version__
setup(
name="qhub",
version=__version__,
description="Management of QHub on Cloud Infrastructure",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/quansight/qhub",
author="Quansight",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="aws gcp do azure qhub",
packages=find_packages(),
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
install_requires=[
"cookiecutter==1.7.2",
"ruamel.yaml",
"cloudflare",
"auth0-python",
"pydantic",
"pynacl",
"bcrypt",
"kubernetes",
"azure-identity==1.6.1",
"azure-mgmt-containerservice==16.2.0",
"packaging",
"python-keycloak",
],
extras_require={
"dev": [
"flake8==3.8.4",
"black==20.8b1",
"twine",
"pytest",
"diagrams",
"jhub-client",
"pre-commit",
"kubernetes",
"dask-gateway",
],
},
include_package_data=True,
entry_points={"console_scripts": ["qhub = qhub.__main__:main"]},
project_urls={
"Bug Reports": "https://github.com/quansight/qhub",
"Source": "https://github.com/quansight/qhub",
},
)