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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# see _setup.py for release instructions
[build-system]
requires = [
"setuptools >=79",
# "setuptools-scm", # if we want to use git versions for versioning
# "wheel", # setuptools doesn't need wheel anymore, see https://pypi.org/project/wheel/
]
build-backend = "setuptools.build_meta"
[project]
name = "moarchiving"
description = "This package implements a non-dominated archive for 2, 3 or 4 objectives with hypervolume indicator and uncrowded hypervolume improvement computation."
dynamic = ["version", # see tool.setuptools.dynamic below
# "readme",
]
readme = "README.md" # manually copied and cut
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "Nikolaus Hansen"},
{ name = "Nace Sever" },
{ name = "Mila Nedic" },
{ name = "Tea Tusar" },
]
keywords = [
"multi-objective",
"optimization",
]
maintainers = [
{name = "Nikolaus Hansen", email = "authors_firstname.lastname@inria.fr"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"sortedcontainers >=2.3.0",
]
[project.optional-dependencies]
arbitrary-precision = ["fractions"]
[project.urls]
Homepage = "https://github.com/cma-es/moarchiving"
[tool.setuptools.dynamic]
version = {attr = "moarchiving.__version__"}
[tool.ruff.lint]
ignore = ["E722", "E741"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
# [tool.setuptools]
# packages = ["moarchiving", "moarchiving.tests"] # automatic detection fails in my dirty folder
# include-package-data = false # true is default
# [tool.setuptools.package-data]
# "*" = ["LICENSE"]
# [tool.setuptools.exclude-package-data]
# "*" = ["*"]
# [tool.setuptools.packages.find] # for . works only in a clean folder
# where = ["src"]
|