-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
75 lines (64 loc) · 1.69 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dynapyt"
dynamic = ["version"]
description = "Dynamic analysis framework for Python"
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
authors = [
{ name = "Aryaz Eghbali", email = "[email protected]" },
{ name = "Michael Pradel", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"libcst",
"filelock",
]
[project.urls]
"Bug Tracker" = "https://github.com/sola-st/DynaPyt/issues"
Homepage = "https://github.com/sola-st/DynaPyt"
[tool.hatch.version]
path = "src/dynapyt/__init__.py"
[tool.hatch.build.targets.wheel]
packages = [
"src/dynapyt",
]
[tool.hatch.build.targets.wheel.force-include]
"src/dynapyt/utils/hierarchy.json" = "src/dynapyt/utils/hierarchy.json"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[project.optional-dependencies]
end2end = [
"pytest-xdist",
"fire",
]
[tool.hatch.envs.end2end]
dependencies = [
"pytest",
"fire",
]
[tool.hatch.envs.end2end.scripts]
run = "bash end2end_tests/scripts/run_single_project.sh simple-with-pytest simple_with_pytest tests"
cli = "bash end2end_tests/scripts/run_cli.sh simple-with-pytest simple_with_pytest \"pytest -n 6 tests\""
[tool.hatch.envs.exec_invariance_test]
dependencies = [
"pytest-json-report",
]
[tool.hatch.envs.exec_invariance_test.scripts]
run = "bash execution_invariance_test/run_test.sh"
[tool.black]
extend-exclude = '''
(
^/tests/trace_single_hook/write/program.py
| ^/tests/regression/assert_no_space/program.py
)
'''