-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.19 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
[build-system]
requires = ["setuptools", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[project]
name = "TigerShark3"
description = "TigerShark3: An X12/EDI file parser"
version = "3.0"
readme = "README.md"
authors = [
{name = "Steven Buss", email = "steven.buss@gmail.com"},
{name = "Steven Lott", email = "slott56@email.com"},
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Text Processing",
"Topic :: File Formats",
"Topic :: Office/Business",
"Typing :: Typed",
]
[tool.setuptools]
packages = [
"tigershark3",
"tigershark3.tools",
"tigershark3.x12",
]
[project.scripts]
x12-build = "tigershark3.tools.xml_extract:main"
[project.optional-dependencies]
dev = [
"sphinx==5.0.2",
"sphinxcontrib-plantuml==0.25",
"pip-tools==6.13.0"
]
test = [
"pytest==7.3.1",
"pytest-cov==4.0.0",
"tox==4.5.1",
"mypy==1.3.0",
"behave==1.2.6"
]