-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (58 loc) · 1.56 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
import os
from setuptools import setup
requires = [
'jupyterhub>=0.7,<1dev',
'marathon>=0.9,<1dev',
]
tests_require = [
'pytest>=3.0,<3.3',
'pytest-cov>=2.5,<3dev',
'pytest-html>=1.15.2,<2dev',
]
version_ns = {}
with open(os.path.join(os.path.dirname(__file__), 'ucrspawner', '_version.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name='ucrspawner',
version=version_ns['__version__'],
description='JupyterHub spawner for Marathon UCR',
url='https://github.com/dtaniwaki/ucrspawner',
author='Daisuke Taniwaki',
author_email='[email protected]',
license='MIT',
keywords='JupyterHub Marathon UCR Mesos',
packages=[
'ucrspawner',
],
package_data={
'ucrspawner': ['templates/*'],
},
python_requires='>=3.3',
install_requires=requires,
setup_requires=[
'pytest-runner>=4.0,<5dev',
'tox>=2.7,<3dev',
'bumpversion>=0.5.3,<1dev',
],
tests_require=tests_require,
extras_require={
'test': tests_require,
'flake8': [
'flake8>=3.5.0,<4dev',
'autoflake>=1.1,<2dev',
'autopep8>=1.3,<2dev',
'flake8-blind-except>=0.1.1,<1dev',
'flake8-import-order>=0.16,<1dev',
'flake8-html>=0.4.0,<1dev',
],
'cov': [
'coverage>=4.5.0,<5dev',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Framework :: Jupyter',
],
)