forked from Evernote/evernote-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 874 Bytes
/
pyproject.toml
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
[project]
name = "evernote-sdk"
description = "Evernote SDK for Python 3 (Unofficial)"
authors = [
{ name = "Sean Champ", email = "spchamp@users.noreply.github.com" },
]
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ['version']
classifiers = [
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
"Private :: Do not Upload",
]
dependencies = ["thrift", "oauth2"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["lib"]
include = ["evernote"]
exclude = ["*.thrift", "*.thrift.*", "thrift.*", "thrift"]
[tool.setuptools.dynamic]
version = { attr = "evernote.VERSION" }
[tool.pdm]
distribution = true