Skip to content

Commit

Permalink
Update Setup Metadata
Browse files Browse the repository at this point in the history
-Add Python 3.12 descriptors
-Add package URLs
  • Loading branch information
reidjohnson committed Oct 4, 2023
1 parent 8789d9e commit 56d6d8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires = [

[tool.black]
line-length = 100
target_version = ['py38', 'py39', 'py310', 'py311']
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
preview = true
exclude = '''
/(
Expand Down
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ def write_version_py():
LONG_DESCRIPTION = f.read()
MAINTAINER = "Zillow Group AI Team"
LICENSE = "Apache License 2.0"
URL = "https://zillow.github.io/quantile-forest"
DOWNLOAD_URL = "https://pypi.org/project/quantile-forest/#files"
PROJECT_URLS = {
"Documentation": "https://zillow.github.io/quantile-forest",
"Source": "https://github.com/zillow/quantile-forest",
"Tracker": "https://github.com/zillow/quantile-forest/issues",
}
VERSION = __version__
CLASSIFIERS = [
"Intended Audience :: Science/Research",
Expand All @@ -49,6 +56,7 @@ def write_version_py():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]

Expand Down Expand Up @@ -83,6 +91,9 @@ def setup_package():
maintainer=MAINTAINER,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
version=VERSION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 56d6d8c

Please sign in to comment.