-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.42 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
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), 'r', encoding = 'utf-8') as fh:
long_description = fh.read()
version='0.0.1'
setup(
name = 'jupyter-openwebui-proxy',
version = version,
packages = find_packages(),
url = 'https://github.com/cyverse/jupyter-openwebui-proxy',
download_url = 'https://github.com/cyverse/jupyter-openwebui-proxy/archive/refs/heads/main.zip'.format(version),
author = 'Edwin Skidmore',
author_email = '[email protected]',
description = 'CyVerse extension for Open WebUI for Jupyter',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = ['cyverse','jupyter', 'openwebui', 'jupyterhub', 'jupyter-server-proxy'],
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Jupyter',
],
entry_points = {
'jupyter_serverproxy_servers': [
'openwebui = jupyter_openwebui_proxy:setup_openwebui',
]
},
package_data={
"jupyter_openwebui_proxy": ["icons/openwebui.svg"],
},
python_requires = '>=3.6',
install_requires=[
'jupyter-server-proxy>=4.0.0',
'tornado>=6.3'
],
include_package_data = True,
zip_safe = False
)