forked from aphearin/mpipso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (29 loc) · 910 Bytes
/
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
[project]
name = "multiswarm"
authors = [
{name = "Alan Pearl", email = "alanpearl13@gmail.com"},
{name = "Andrew Hearin", email = "ahearin@anl.gov"}
]
description = "Particle Swarm Optimization with mpi4py"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = ["Programming Language :: Python :: 3"]
dynamic = ["dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
home = "https://github.com/AlanPearl/multiswarm"
[tool.setuptools_scm]
write_to = "multiswarm/_version.py"
write_to_template = "__version__ = '{version}'"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude=["tests*", "scripts*", "docs*", "notebooks*"]}}
package-dir = {multiswarm = "multiswarm"}
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7"
]
build-backend = "setuptools.build_meta"