There was an error while loading. Please reload this page.
1 parent c41043b commit aed071eCopy full SHA for aed071e
1 file changed
setup.py
@@ -148,7 +148,13 @@ def ismac():
148
]
149
150
setup(
151
- name="GPy",
+ # Use the PEP 503/normalized distribution name so wheel filenames and
152
+ # *.dist-info directories are consistently "gpy-..." across setuptools
153
+ # versions. (Older setuptools kept the historical "GPy" spelling in
154
+ # artifact names; newer ones lowercase it — producing mixed uploads.)
155
+ # The import package remains "GPy" via packages=/package_dir below.
156
+ # PyPI treats "GPy" and "gpy" as the same project.
157
+ name="gpy",
158
version=__version__,
159
author=read_to_rst("AUTHORS.txt"),
160
author_email="gpy.authors@gmail.com",
0 commit comments