-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (83 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (83 loc) · 2.43 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
# requires = ["setuptools", "setuptools-scm"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[project]
name = "convtools"
dynamic = ["version"]
description = "dynamic, declarative data transformations with automatic code generation"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
keywords = ["etl", "converters", "codegen", "convtools"]
authors = [
{email = "nikita.almakov@gmail.com", name = "Nikita Almakov"},
]
maintainers = [
{email = "nikita.almakov@gmail.com", name = "Nikita Almakov"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"astunparse == 1.6.3; python_version < '3.9'",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-benchmark"]
lint = [
"black",
"flake8",
"isort",
"mypy",
"pylint",
]
doc = [
"markdown-include",
"mdx-truly-sane-lists",
"mkdocs",
"mkdocs-exclude",
"mkdocs-llmstxt",
"mkdocs-material",
"pygments",
"pymdown-extensions",
]
[project.urls]
homepage = "https://github.com/westandskif/convtools"
documentation = "https://convtools.readthedocs.io/en/latest/"
repository = "https://github.com/westandskif/convtools"
changelog = "https://github.com/westandskif/convtools/blob/master/docs/changelog.md"
[tool.black]
line-length = 79
target-version = ['py37']
[tool.isort]
profile = "black"
known_first_party = "convtools"
line_length = 79
src_paths = ["src", "tests"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov convtools --cov-report term-missing --cov-report xml --verbose"
testpaths = [
"tests",
]