From 1efa6434c4438c4aa6eb40a4110e11f5e0a2a44a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 4 Oct 2023 21:30:44 -0400 Subject: [PATCH] STYLE: Prefer using lowercase to name package Prefer using lowercase to name package in line with other relevant scientific computing Python packages. Change it as well in the commented PyPI URL (note that the package was never been uploaded to PyPI, and thus, changing the package name at this stage is safe from that point of view). --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6f90b0e4..bb463c0a 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup from pkg_resources import resource_filename -# url='http://pypi.python.org/pypi/WhiteMatterAnalysis/', +# url='http://pypi.python.org/pypi/whitematteranalysis/', # scripts=['bin/test1.py','bin/test2.py'], # ext_modules work-around: https://stackoverflow.com/a/38057196 @@ -88,7 +88,7 @@ def build_extensions(self): setup_requires = ['cython==0.29.*', 'numpy==1.20.*'] setup( - name='WhiteMatterAnalysis', + name='whitematteranalysis', version='0.3.0', author='Fan Zhang and Lauren O\'Donnell', author_email='fzhang@bwh.harvard.edu; odonnell@bwh.harvard.edu',