forked from jupyter-server/jupyverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.2 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
from pathlib import Path
from setuptools import setup, find_packages
here = Path(__file__).parent
version_ns = {}
with open(here / "jupyverse" / "_version.py") as f:
exec(f.read(), {}, version_ns)
setup(
name="jupyverse",
version=version_ns["__version__"],
url="https://github.com/davidbrochart/jupyverse.git",
author="David Brochart",
author_email="[email protected]",
description="A web server for Jupyter, based on FastAPI",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"fastapi",
"aiofiles",
"typer",
"uvicorn",
"websockets",
"kernel_server",
],
extras_require={
"test": [
"flake8",
"black",
"mypy",
"pytest",
"requests",
"retrolab",
],
},
entry_points={
"console_scripts": ["jupyverse = jupyverse.jupyverse:cli"],
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)