forked from ansys/aedt-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 889 Bytes
/
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
# description if packaging system requirements
[build-system]
requires = [
"flit_core >=3.2,<4",
]
build-backend = "flit_core.buildapi"
# description of current module
[project]
name = "aedttest"
authors = [
{name = "Maksim Beliaev", email = "maksim.beliaev@ansys.com"},
{name = "Bo Yang", email = "bo.yang@ansys.com"},
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"pyaedt==0.4.16",
"Django==3.2.8",
]
# development dependencies
[project.optional-dependencies]
test = [
"pre-commit==2.15.0",
"mypy==0.910",
"pytest==6.2.5",
"pytest-cov==3.0.0",
]
deploy = [
"flit==3.4.0",
]
[project.urls]
Home = "https://github.com/ansys/aedt-testing"
# CLI script command
[project.scripts]
aedt_test_runner = "aedttest.aedt_test_runner:main"