-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (43 loc) · 1.51 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
share_qhub_jupyterhub_theme = os.path.join(here, 'share', 'qhub_jupyterhub_theme')
# Get the long description from the README file
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="qhub_jupyterhub_theme",
version='0.3.6',
description="QHub jupyterhub theme",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Quansight/qhub-jupyterhub-theme",
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",
],
keywords="jupyterhub theme",
packages=['qhub_jupyterhub_theme'],
python_requires="!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
install_requires=[
"jupyterhub"
],
package_data={
'qhub_jupyterhub_theme': [
'templates/*',
'custom/css/*',
'custom/images/*'
]
},
include_package_data=True,
project_urls={
"Bug Reports": "https://github.com/Quansight/qhub-jupyterhub-theme",
"Source": "https://github.com/Quansight/qhub-jupyterhub-theme",
},
)