-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
45 lines (40 loc) · 1.12 KB
/
setup.cfg
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
[metadata]
name = notion-objects
version = attr: notion_objects.__version__
url = https://github.com/thrau/notion-objects
author = Thomas Rausch
author_email = [email protected]
description = A python library to work with objects retrieved from the notion API
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = Apache License 2.0
classifiers =
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Operating System :: OS Independent
Programming Language :: Python :: 3
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
[options]
zip_safe = False
packages = find:
install_requires =
python-dateutil>=2.8
notion-client>=1.0
[options.extras_require]
# developer/testing dependencies
test =
coverage[toml]>=5.0
pytest-cov>=2.7.1
coveralls
black>=22.1
isort>=5.10
pytest>=7.0
[options.packages.find]
exclude =
tests*
[options.package_data]
* = *.md