forked from kynan/nbstripout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
54 lines (44 loc) · 1.39 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
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup_requires = [
'pytest-runner'
]
tests_require = [
'cram',
'flake8'
]
setup(name='nbstripout',
version='0.2.1',
author='Min RK',
author_email='[email protected]',
# 0.1 branch
# maintainer='Florian Rathgeber',
# maintainer_email='[email protected]',
# url='https://github.com/kynan/nbstripout',
# 0.2 branch
maintainer='Michael McNeil Forbes',
maintainer_email='[email protected]',
url='https://github.com/mforbes/nbstripout',
license="License :: OSI Approved :: MIT License",
description='Strips outputs from Jupyter and IPython notebooks',
long_description=long_description,
py_modules=['pytest_cram', 'nbstripout'],
entry_points={
'console_scripts': [
'nbstripout = nbstripout:main'
],
'pytest11': [
'pytest_cram = pytest_cram',
]
},
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Framework :: IPython",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Version Control",
])