-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (27 loc) · 984 Bytes
/
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
import setuptools
from pathlib import Path
here = Path(__file__).parent
long_description = (here / 'README.md').read_text()
setuptools.setup(
name='ipynbname',
version='2023.2.0.0',
author='Mark McPherson',
author_email='[email protected]',
description='Simply returns either notebook filename or the full path to the notebook when run from Jupyter notebook in browser.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
keywords='jupyter notebook filename'.split(),
url='https://github.com/msm1089/ipynbname',
packages=setuptools.find_packages(),
package_data={},
install_requires=['ipykernel'],
python_requires='>=3.4',
classifiers=[
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Framework :: Jupyter',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License'
]
)