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