Skip to content

Commit bc01f64

Browse files
shoyercopybara-github
authored andcommitted
Fix license and source-code URLs in PyPI metadata
"Apache-2.0" is the standard SPDX string which PyPI prefers. "source-code" is the right way to indicate a GitHub link. PiperOrigin-RevId: 777762363
1 parent 8d2b7c1 commit bc01f64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
setuptools.setup(
2020
name='xarray-tensorstore',
2121
version='0.1.5', # keep in sync with xarray_tensorstore.py
22-
license='Apache 2.0',
22+
license='Apache-2.0',
2323
author='Google LLC',
2424
author_email='noreply@google.com',
2525
install_requires=['numpy', 'xarray', 'zarr', 'tensorstore'],
2626
extras_require={
2727
'tests': ['absl-py', 'dask', 'pandas', 'pytest'],
2828
},
29-
url='https://github.com/google/xarray-tensorstore',
29+
url={'source-code': 'https://github.com/google/xarray-tensorstore'},
3030
py_modules=['xarray_tensorstore'],
3131
python_requires='>=3.10',
3232
)

0 commit comments

Comments
 (0)