-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
46 lines (38 loc) · 1.4 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
install_requires = [
'nbformat'
]
setup(name='nbstripout',
version='0.8.0',
author='Florian Rathgeber',
author_email='[email protected]',
url='https://github.com/kynan/nbstripout',
license="License :: OSI Approved :: MIT License",
description='Strips outputs from Jupyter and IPython notebooks',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
provides=['nbstripout'],
entry_points={
'console_scripts': [
'nbstripout = nbstripout._nbstripout:main'
],
},
install_requires=install_requires,
python_requires='>=3.8',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Framework :: IPython",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control",
])