-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.23 KB
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
[project]
name = "arcgen-python"
version = "2026.1.0"
description = "Arc-length Response Corridor Generation"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "Devon Hartlen", email = "hartlendc@gmail.com"},
]
keywords = ['averaging', 'statistics', 'corridors', 'arc-length', 'response corridors']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"matplotlib>=3.9",
"numpy>=2.3",
"scipy>=1.16",
]
[project.urls]
Homepage = "https://github.com/IMMC-UWaterloo/ARCGen-Python"
Documentation = "https://github.com/IMMC-UWaterloo/ARCGen-Python"
Repository = "https://github.com/IMMC-UWaterloo/ARCGen-Python.git"
Issues = "https://github.com/IMMC-UWaterloo/ARCGen-Python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/arcgen"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]