-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (59 loc) · 2.04 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
[tool.poetry]
name = "jtd-codebuild"
version = "1.0.1"
description = "Tool for generating language specific schemas and interfaces code from JSON Type Definition IDL files in yaml format. Powered by jtd-codegen."
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python :: 3 :: Only',
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
]
authors = ["01Joseph-Hwang10 <joseph95501@gmail.com>"]
license = "MIT"
readme = "README.md"
[[tool.poetry.packages]]
include = "jtd_codebuild"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pyyaml = "^6.0.1"
click = "^8.1.7"
case-converter = "^1.1.0"
toolz = "^0.12.1"
deepmerge = "^1.1.1"
joblib = "^1.4.0"
pydantic = "^2.7.1"
colorama = "^0.4.6"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
black = "^23.10.1"
poethepoet = "^0.24.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pydantic = "^2.6.3"
[tool.poetry.scripts]
jtd-codebuild = "jtd_codebuild.__main__:cli"
[tool.poe.tasks]
test = "python -m pytest"
lint = "flake8 jtd_codebuild"
check-format = "black jtd_codebuild --check"
generate-project-config-json-schema = "python -m jtd_codebuild.config.project.scripts.generate_project_config_json_schema"
[tool.black]
line-length = 88
target-version = ["py311"]
include = "\\.pyi?$"
extend-exclude = "/(\n # The following are specific to Black, you probably don't want those.\n tests/data\n | profiling\n)/\n"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"