-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 876 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
30
31
from setuptools import setup, find_packages
setup(
name='obsidianize',
description='A package to convert jupyter notebooks to markdown files for use in Obsidian',
version='1.0.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'nbformat',
'nbconvert',
'fire',
'pandas',
'matplotlib',
'plotly',
],
entry_points={
'console_scripts': [
'obsidianize = obsidianize.scripts.__main__:main_cli',
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.8',
)