-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (71 loc) · 2.83 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
[build-system]
requires = [
"setuptools>=42" ,
"wheel" ,
"Cython" ,
"numpy" ,
"scipy<1.14.0" ,
"build" ,
"pyfftw>=0.14.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "choreo" # as it would appear on PyPI
description = "A set of tools to compute periodic solutions to the Newtonian N-body problem"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["ODE","periodic","N-body","gravitation"]
authors = [
{name = "Gabriel Fougeron", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha" ,
"Programming Language :: Python :: 3" ,
"Programming Language :: Cython" ,
"Programming Language :: JavaScript" ,
"Environment :: WebAssembly :: Emscripten" ,
"Intended Audience :: Education" ,
"License :: OSI Approved :: BSD License" ,
"Natural Language :: English" ,
"Topic :: Scientific/Engineering :: Mathematics" ,
"Topic :: Scientific/Engineering :: Physics" ,
]
requires-python = ">= 3.10"
dynamic = ["dependencies", "optional-dependencies", "version"]
[tool.setuptools.dynamic.version]
attr = "choreo.metadata.__version__"
[tool.setuptools.dynamic.dependencies]
file = ["requirements/requirements.txt"]
[tool.setuptools.dynamic.optional-dependencies]
build = {file = ["requirements/requirements-build.txt" ]}
gui = {file = ["requirements/requirements-gui.txt" ]}
cli = {file = ["requirements/requirements-cli.txt" ]}
test-cli = {file = ["requirements/requirements-test-cli.txt" ]}
test-gui = {file = ["requirements/requirements-test-gui.txt" ]}
test = {file = ["requirements/requirements-test.txt" ]}
bench = {file = ["requirements/requirements-bench.txt" ]}
docs = {file = ["requirements/requirements-docs.txt" ]}
full = {file = ["requirements/requirements-full.txt" ]}
[tool.setuptools]
license-files = ["LICENSES/*.txt"]
[project.scripts]
choreo_CLI_search = "choreo.run:entrypoint_CLI_search"
[project.urls]
Homepage = "https://gabrielfougeron.github.io/choreo/"
Documentation = "https://gabrielfougeron.github.io/choreo-docs/"
Repository = "https://github.com/gabrielfougeron/choreo"
Changelog = "https://github.com/gabrielfougeron/choreo/releases/"
[tool.pytest.ini_options]
minversion = "6.0"
# addopts = "-ra --junit-xml=docs/pytest_out/junit.xml -n auto"
addopts = "-ra --junit-xml=docs/pytest_out/junit.xml"
testpaths = [
"tests",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
junit_family = "xunit2"
junit_logging = "system-out"
junit_suite_name = "Pytest test results"
junit_log_passing_tests = true