@@ -33,6 +33,13 @@ def write_version_py():
33
33
LONG_DESCRIPTION = f .read ()
34
34
MAINTAINER = "Zillow Group AI Team"
35
35
LICENSE = "Apache License 2.0"
36
+ URL = "https://zillow.github.io/quantile-forest"
37
+ DOWNLOAD_URL = "https://pypi.org/project/quantile-forest/#files"
38
+ PROJECT_URLS = {
39
+ "Documentation" : "https://zillow.github.io/quantile-forest" ,
40
+ "Source" : "https://github.com/zillow/quantile-forest" ,
41
+ "Tracker" : "https://github.com/zillow/quantile-forest/issues" ,
42
+ }
36
43
VERSION = __version__
37
44
CLASSIFIERS = [
38
45
"Intended Audience :: Science/Research" ,
@@ -49,6 +56,7 @@ def write_version_py():
49
56
"Programming Language :: Python :: 3.9" ,
50
57
"Programming Language :: Python :: 3.10" ,
51
58
"Programming Language :: Python :: 3.11" ,
59
+ "Programming Language :: Python :: 3.12" ,
52
60
"Programming Language :: Python :: Implementation :: CPython" ,
53
61
]
54
62
@@ -83,6 +91,9 @@ def setup_package():
83
91
maintainer = MAINTAINER ,
84
92
description = DESCRIPTION ,
85
93
license = LICENSE ,
94
+ url = URL ,
95
+ download_url = DOWNLOAD_URL ,
96
+ project_urls = PROJECT_URLS ,
86
97
version = VERSION ,
87
98
long_description = LONG_DESCRIPTION ,
88
99
long_description_content_type = "text/markdown" ,
0 commit comments