forked from kynan/nbstripout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (49 loc) · 1.65 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
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
install_requires = [
'nbformat'
]
setup_requires = [
'pytest-runner',
'setuptools >= 30'
]
tests_require = [
'pytest',
'pytest-flake8',
'pytest-cram == 0.1.1',
]
setup(name='nbstripout',
version='0.3.1',
author='Min RK',
author_email='benjaminrk@gmail.com',
maintainer='Florian Rathgeber, Michael McNeil Forbes',
maintainer_email='florian.rathgeber@gmail.com, michael.forbes+python@gmail.com',
url='https://github.com/kynan/nbstripout',
license="License :: OSI Approved :: MIT License",
description='Strips outputs from Jupyter and IPython notebooks',
long_description=long_description,
py_modules=['nbstripout'],
entry_points={
'console_scripts': [
'nbstripout = nbstripout:main'
],
},
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Framework :: IPython",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
])