-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.63 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
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyhsds"
version = "2.0.0"
description = "Harmony Search Algorithm for Dependent Design Spaces"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Abdulkadir Özcan", email = "a.kdr.ozcn@gmail.com" }]
requires-python = ">=3.8"
keywords = [
"harmony search",
"metaheuristic",
"optimization",
"dependent design spaces",
"structural engineering",
"multi-objective",
"pareto",
"aci-318",
"ec2",
"engineering optimization",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/AutoPyloter/hsds"
"Source" = "https://github.com/AutoPyloter/hsds"
"Bug Tracker" = "https://github.com/AutoPyloter/hsds/issues"
"Documentation" = "https://github.com/AutoPyloter/hsds/wiki"
"Changelog" = "https://github.com/AutoPyloter/hsds/releases"
[tool.setuptools.packages.find]
where = ["."]
include = ["hsds*"]
[tool.setuptools.package-data]
hsds = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"