-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
57 lines (50 loc) · 1.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import sys
try:
from setuptools import setup, find_packages
from setuptools import Command
from setuptools import Extension
except ImportError:
sys.exit(
"We need the Python library setuptools to be installed. "
"Try running: python -m ensurepip"
)
if "bdist_wheel" in sys.argv:
try:
import wheel # noqa: F401
except ImportError:
sys.exit(
"We need both setuptools AND wheel packages installed "
"for bdist_wheel to work. Try running: pip install wheel"
)
REQUIRES = ["notion-client>=0.8.0"]
# with open("README_En.md", encoding="utf-8") as handle:
# readme_rst = handle.read()
setup(
name="notion-dump-kernel",
version="0.2.4",
author="delta1037",
author_email="[email protected]",
url="https://github.com/delta1037/notion-export-kernel",
description="Freely available tools for export Notion page and database.",
project_urls={
"Documentation": "https://github.com/delta1037/notion-export-kernel/blob/main/README.md",
"Source": "https://github.com/delta1037/notion-export-kernel",
"Tracker": "https://github.com/delta1037/notion-export-kernel/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Text Processing :: Markup",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(where='.', exclude=(), include=('*',)),
include_package_data=True, # done via MANIFEST.in under setuptools
install_requires=REQUIRES,
)
# 打包发布
# 1、python setup.py sdist
# 2、twine upload dist/*