-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
78 lines (68 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tdworkflow"
description = "Unofficial Treasure Workflow API client"
authors = [
{name = "Aki Ariga", email = "chezou@gmail.com"}
]
maintainers = [
{name ="Aki Ariga", email = "chezou@gmail.com"}
]
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Database",
"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",
]
requires-python = ">=3.8"
dependencies = [
"requests",
"mypy-extensions",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"flake8",
"black",
"isort",
"mypy",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
[project.urls]
"Homepage" = "https://github.com/chezou/tdworkflow"
"Bug Reports" = "https://github.com/chezou/tdworkflow/issues"
"Funding" = "https://github.com/sponsors/chezou"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
[tool.isort]
profile = "black"
[tool.flake8]
ignore = ["E203", "W503"]
max-line-length = 88
exclude = [
".git",
".eggs",
"__pycache__",
"docs/",
"build/",
"dist/",
]
[tool.mypy]
ignore_missing_imports = true