-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.5 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "td-client"
version = "1.3.0"
description = "Treasure Data API library for Python"
readme = {file = "README.rst", content-type = "text/x-rst; charset=UTF-8"}
requires-python = ">=3.8"
license = {text = "Apache Software License"}
authors = [{name = "Treasure Data, Inc.", email = "[email protected]"}]
urls = {homepage = "http://treasuredata.com/"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Internet",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"python-dateutil",
"msgpack>=0.6.2",
"urllib3",
]
[project.optional-dependencies]
dev = ["ruff"]
docs = ["sphinx", "sphinx_rtd_theme"]
[tool.setuptools]
packages = ["tdclient"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"E",
"F",
]
exclude = ["tdclient/test/*"]
ignore = ["E203", "E501"]
[tool.ruff.lint.isort]
known-third-party = ["dateutil","msgpack","pkg_resources","pytest","setuptools","urllib3"]