-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (41 loc) · 1.63 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
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Minimal Python VERSION sanity check (from IPython/Jupyterhub)
# -----------------------------------------------------------------------------
from __future__ import print_function
import sys
from setuptools import setup, find_packages
VERSION = '0.2.0'
install_requires = []
with open('requirements.txt') as f:
for line in f.readlines():
req = line.strip()
if not req or req.startswith(('-e', '#')):
continue
install_requires.append(req)
def main():
setup(
name = 'sdccjupyter',
packages = find_packages(),
package_data = {'sdccjupyter': ['conf/*.cfg', 'cron/*', 'static/*.html', 'templates/*.html']},
version = VERSION,
description = """SDCC Jupyter Spawners""",
long_description = "",
author = "William Strecker-Kellogg",
author_email = "[email protected]",
url = "https://www.sdcc.bnl.gov",
license = "BSD",
install_requires = install_requires,
platforms = "Linux, Mac OS X",
keywords = ['Interactive', 'Shell', 'Web', 'Jupyter'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)
if __name__ == '__main__':
main()