Skip to content

Commit

Permalink
Add more metadata to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Jun 9, 2022
1 parent 9a96faa commit 9e49e0c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pyrfr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def run(self):
setup(
name="pyrfr",
version="${RFR_VERSION_MAJOR}.${RFR_VERSION_MINOR}.${RFR_VERSION_RELEASE}",
author="Stefan Falkner",
author="Stefan Falkner, Matthias Feurer, Rene Sass, Eddie Bergman",
author_email="[email protected]",
license="BSD-3-Clause",
classifiers=[
Expand All @@ -59,10 +59,11 @@ def run(self):
],
packages=["pyrfr"],
ext_modules=extensions,
python_requires=">=3",
python_requires=">=3.7",
package_data={"pyrfr": ["docstrings.i"]},
py_modules=["pyrfr"],
cmdclass={"build": CustomBuild, "install": CustomInstall},
long_description="",
long_description="# Pyrfr\nhttps://github.com/automl/random_forest_run",
long_description_content_type="text/markdown",
url="https://github.com/automl/random_forest_run",
)

0 comments on commit 9e49e0c

Please sign in to comment.