-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.22 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
46
47
48
49
50
[build-system]
requires = ["setuptools>=77", "wheel", "fmodpy"]
build-backend = "setuptools.build_meta"
[project]
name = "pylabdd"
version = "1.2.5"
description = "Python Laboratory for Dislocation Dynamics"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = [ "LICENSE" ]
requires-python = ">=3.10"
authors = [
{ name = "Alexander Hartmaier", email = "alexander.hartmaier@rub.de" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy",
"matplotlib",
"fmodpy"
]
[project.optional-dependencies]
dev = ["pytest", "black", "build", "twine"]
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
packages = ["pylabdd"]
[tool.setuptools.cmdclass]
build_py = "pylabdd.buildtools.setup_fortran.BuildFortran"
[tool.setuptools.package-data]
"pylabdd" = ["PK_force/*", "PK_force_py/*", "buildtools/*", "*.f90"]
[project.urls]
Homepage = "https://github.com/AHartmaier/pyLabDD"