forked from kynan/nbstripout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (47 loc) · 1.53 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
from setuptools import setup, find_packages
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.2.1',
]
setup(name='nbstripout',
version='0.3.7',
author='Florian Rathgeber',
author_email='florian.rathgeber@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,
packages=find_packages(),
provides=['nbstripout'],
entry_points={
'console_scripts': [
'nbstripout = 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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
])