forked from echo724/notion2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 935 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
from setuptools import find_packages, setup
import setuptools
import io
# Read in the README for the long description on PyPI
def long_description():
with io.open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
return readme
setup(
name='notion2md',
version='1.3',
description='Export notion page to markdown',
long_description=long_description(),
long_description_content_type="text/markdown",
url='https://github.com/echo724/notion2md.git',
author='echo724',
author_email='[email protected]',
license='MIT',
install_requires=[
'notion>=0.0.25',
'requests>=2.22.0',
],
packages=setuptools.find_packages(include=['notion2md']),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
],
)