forked from paperboi/kindle2notion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.1 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = f.read()
with open('requirements-dev.txt', 'r', encoding='utf-8') as f:
requirements_dev = f.read()
setup(
name='kindle2notion',
version='0.1.2',
author='Jeffrey Jacob',
author_email='[email protected]',
description='Export all the clippings from your Kindle device to a database in Notion.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/paperboi/kindle2notion',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=requirements,
extras_require={
'dev': requirements_dev
},
python_requires='>=3.7',
entry_points={
'console_scripts': [
'kindle2notion = kindle2notion.__main__:main',
],
},
)