-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (45 loc) · 1.44 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
from setuptools import find_packages, setup
import subprocess
with open("README.md", encoding="utf8") as f:
readme = f.read()
# FIXME: Better build process?!
subprocess.check_call(["npm", "i"])
subprocess.check_call(["npm", "run", "build"])
setup(
name="repo2jupyterlite",
version="0.2",
install_requires=[
"jupyterlite-core[all]",
"jupyterlite-xeus-python",
"jupyter-repo2docker",
"yarl",
],
python_requires=">=3.10",
author="Yuvi Panda",
author_email="[email protected]",
url="https://github.com/jupyterlite/repo2jupyterlite/",
project_urls={
"Source": "https://github.com/jupyterlite/repo2jupyterlite/",
"Tracker": "https://github.com/jupyterhub/repo2docker/issues",
},
description="Build JupyterLite bundles from code repositories",
long_description=readme,
long_description_content_type="text/markdown",
license="3-BSD",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"repo2jupyterlite = repo2jupyterlite.app:main",
],
},
)