-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
brining more over into pyproject from setup
- Loading branch information
Showing
2 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,15 @@ requires = [ | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bingo" | ||
name = "bingo-nasa" | ||
keywords = ["symbolic regression"] | ||
description = "A package for genetic optimization and symbolic regression" | ||
authors = [ | ||
{name = "Geoffrey Bomarito, email = "[email protected]" } | ||
] | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
license = {file = "LICENSE.txt"} | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"mpi4py>=2.0.0,<4.0", | ||
|
@@ -22,6 +30,18 @@ dependencies = [ | |
"smcpy", | ||
"pybind11[global]", | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://nasa.github.io/bingo/" | ||
Repository = "https://github.com/nasa/bingo" | ||
|
||
[project.optional-dependencies] | ||
ONNX = ["onnx"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,13 +128,6 @@ def build_extension(self, ext: CMakeExtension) -> None: | |
|
||
|
||
setup( | ||
name="bingo-nasa", | ||
author="Geoffrey Bomarito", | ||
author_email="[email protected]", | ||
description="A package for genetic optimization and symbolic regression", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/nasa/bingo", | ||
packages=[ | ||
"bingo", | ||
"bingo.chromosomes", | ||
|
@@ -152,13 +145,6 @@ def build_extension(self, ext: CMakeExtension) -> None: | |
"bingo.util", | ||
"bingo.variation", | ||
], | ||
install_requires=[], | ||
python_requires=">=3.9", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Development Status :: 3 - Alpha", | ||
], | ||
# add extension module | ||
ext_modules=[CMakeExtension("bingocpp", "bingocpp")], | ||
# add custom build_ext command | ||
|