-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (63 loc) · 1.79 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
# SPDX-FileCopyrightText: 2022 Pepijn de Vos
#
# SPDX-License-Identifier: MPL-2.0
import setuptools
with open("readme.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Pyttoresque",
author="Pepijn de Vos",
author_email="[email protected]",
description="Library for working with NyanCAD tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NyanCAD/pyttoresque",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'aiohttp',
'pycapnp',
'panel',
'holoviews',
'datashader',
'plotly',
'numpy',
'jupyterlab',
'jupyter-server-proxy',
],
package_data={
'pyttoresque': [
'api/Simulator.capnp',
'app/static/*',
'app/templates/*',
],
},
include_package_data=True,
data_files=[
(
"etc/jupyter/jupyter_server_config.d",
["jupyter-config/jupyter_server_config.d/pyttoresque.json"]
),
(
"etc/jupyter/jupyter_notebook_config.d",
["jupyter-config/jupyter_notebook_config.d/pyttoresque.json"]
),
],
entry_points={
'console_scripts': [
'jupyter-mosaic = pyttoresque.app:main'
],
'jupyter_serverproxy_servers': [
# name = packagename:function_name
'couchdb = pyttoresque.app:setup_couchdb',
'panel = pyttoresque.app:setup_panel',
]
},
python_requires='>=3.6',
use_scm_version=True,
setup_requires=['setuptools_scm'],
)