-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (94 loc) · 2.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
name = "pyconverter-xml2py"
version = "0.4.dev0"
description = "PyConverter-XML2Py converter."
readme = "README.rst"
requires-python = ">=3.10,<4"
license = {file = "LICENSE"}
authors = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
maintainers = [
{name = "PyAnsys Core", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=7.0,<9.0.0",
"importlib-metadata>=4.0",
"pygithub>=1.59.1",
"inflect>=7.0.0",
"lxml>=4.9.3",
"numpy>=1.14.0",
"py-asciimath==0.3.0",
"pylatexenc==2.10",
"pyyaml>=5.1.0",
"tqdm>=4.64.1",
"black>=24.2.0",
"regex>=2021.4.4",
]
[project.optional-dependencies]
tests = [
"black>=24.2.0",
"click==8.1.7",
"inflect==7.4.0",
"pygithub==2.4.0",
"lxml==5.3.0",
"numpy==2.1.2",
"parse==1.20.2",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-rerunfailures==14.0",
"pyyaml==6.0.2",
"regex==2024.9.11",
]
doc = [
"Sphinx==8.1.3",
"ansys-sphinx-theme[autoapi]==1.1.7",
"build>= 0.10.0",
"flit>=3.8.0",
"inflect==7.4.0",
"jupyter_sphinx==0.5.3",
"numpy==2.1.2",
"numpydoc==1.8.0",
"pandas==2.2.3",
"parse==1.20.2",
"pypandoc==1.14",
"pytest-sphinx==0.6.3",
"regex==2024.9.11",
"sphinx-autobuild==2024.10.3",
"sphinx-autodoc-typehints==2.5.0",
"sphinx-copybutton==0.5.2",
"sphinx-notfound-page==1.0.4",
"sphinx-gallery==0.18.0",
]
[tool.flit.module]
name = "pyconverter.xml2py"
[project.urls]
Source = "https://github.com/ansys/pyconverter-xml2py/"
Tracker = "https://github.com/ansys/pyconverter-xml2py/issues"
Homepage = "https://github.com/ansys/pyconverter-xml2py"
[project.scripts]
pyconverter-xml2py = "pyconverter.xml2py.cli:main"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 100
default_section = "THIRDPARTY"
src_paths = ["src"]
[tool.coverage.run]
source = ["scr"]
[tool.coverage.report]
show_missing = true