-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
47 lines (42 loc) · 1.47 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
[project]
name = "mmapy"
version = "0.3.0"
authors = [
{ name = "Arjen Deetman", email = "info@arjendeetman.nl" }
]
description = "Python implementation of the Method of Moving Asymptotes (MMA)."
license = { text = "GNU General Public License v3 (GPLv3)" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython'
]
requires-python = ">=3.6"
dependencies = ["numpy", "scipy"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/arjendeetman/GCMMA-MMA-Python"
Source = "https://github.com/arjendeetman/GCMMA-MMA-Python"
Issues = "https://github.com/arjendeetman/GCMMA-MMA-Python/issues"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["mmapy"]
license-files = ["LICENSE"]