-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (34 loc) · 1.28 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
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.2.0'
setup(
name = 'jupyter-trame-proxy',
version = version,
packages = find_packages(),
url = 'https://github.com/jwindgassen/jupyter-trame-proxy',
download_url = 'https://github.com/jwindgassen/jupyter-trame-proxy/archive/v{0}.tar.gz'.format(version),
author = 'Jonathan Windgassen',
author_email = '[email protected]',
description = 'ParaView trame proxy for JupyterLab',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = ['jupyter', 'trame', 'paraview', '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': [
'trame = jupyter_trame_proxy:setup_trame',
]
},
python_requires = '>=3.9',
install_requires = ['jupyter-server-proxy>=3.1.0'],
include_package_data = True,
zip_safe = False
)