-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
setup.py
34 lines (30 loc) · 1.02 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
from setuptools import setup
def get_description():
with open("README.md") as file:
return file.read()
setup(
name="notion-client",
version="2.2.1",
url="https://github.com/ramnes/notion-sdk-py",
author="Guillaume Gelin",
author_email="[email protected]",
description="Python client for the official Notion API",
long_description=get_description(),
long_description_content_type="text/markdown",
packages=["notion_client"],
python_requires=">=3.7, <4",
install_requires=[
"httpx >= 0.15.0",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
],
package_data={"notion_client": ["py.typed"]},
)