forked from jupyterhub/binderhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (43 loc) · 1.6 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
import os
from setuptools import setup, find_packages
import subprocess
import versioneer
here = os.path.dirname(__file__)
with open(os.path.join(here, 'requirements.txt')) as f:
requirements = [
l.strip() for l in f.readlines()
if not l.strip().startswith('#')
]
with open(os.path.join(here, 'README.rst'), encoding="utf8") as f:
readme = f.read()
# Build our js and css files before packaging
if os.name == "nt":
subprocess.check_call(['npm.cmd', 'install'])
subprocess.check_call(['npm.cmd', 'run', 'webpack'])
else:
subprocess.check_call(['npm', 'install'])
subprocess.check_call(['npm', 'run', 'webpack'])
setup(
name='binderhub',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires='>=3.6',
author='Project Jupyter Contributors',
author_email='jupyter@googlegroups.com',
license='BSD',
url='https://binderhub.readthedocs.io/en/latest/',
project_urls={
'Documentation': 'https://binderhub.readthedocs.io/en/latest/',
'Funding': 'https://jupyter.org/about',
'Source': 'https://github.com/jupyterhub/binderhub/',
'Tracker': 'https://github.com/jupyterhub/binderhub/issues',
},
# this should be a whitespace separated string of keywords, not a list
keywords="reproducible science environments docker kubernetes",
description="Turn a Git repo into a collection of interactive notebooks",
long_description=readme,
long_description_content_type='text/x-rst',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
)