forked from strictdoc-project/reqif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (79 loc) · 2.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "reqif/__init__.py"
[tool.hatch.build]
include = [
"LICENSE",
"README.md",
"pyproject.toml",
"reqif/"
]
exclude = [
"/.*",
"/tests",
]
[project]
name = "reqif"
dynamic = ["version"]
description = "Python library for ReqIF format. ReqIF parsing and unparsing."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [
{ name = "Stanislav Pankevich", email = "s.pankevich@gmail.com" },
]
classifiers = [
# "Development Status :: 4 - Beta",
# "Environment :: Web Environment",
# "Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
# "Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"lxml >= 4.6.2",
"jinja2 >= 2.11.2",
"xmlschema >= 2.4.0",
"openpyxl",
]
[project.optional-dependencies]
development = [
# Developer tasks
"invoke >= 1.4.1",
# Formatting
"black >= 21.9b0",
# Linters & static analysis
"flake8 >= 3.9.2",
"mypy >= 0.910",
"pylint >= 2.11.1",
"ruff >= 0.0.243",
# Unit tests
"pytest >= 6.2.2",
"coverage >= 5.4",
# Integration tests
"lit >= 0.11.0.post1",
"filecheck >= 0.0.20",
"html5lib >= 1.1",
"pytidylib >= 0.3.2",
# Examples
"dataclasses-json"
]
[project.scripts]
reqif = "reqif.cli.main:main"
[project.urls]
Changelog = "https://github.com/strictdoc-project/reqif/blob/main/CHANGELOG.md"
# Funding = "https://..."
Homepage = "https://github.com/strictdoc-project/reqif"
Source = "https://github.com/strictdoc-project/reqif"
[tool.black]
line-length = 80