diff options
author | Arun Isaac | 2021-03-26 12:35:06 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-26 12:35:06 +0530 |
commit | 9d5bd7208a48a75786e3135e0f6edf5890a1d849 (patch) | |
tree | f522c80845de0c4f6367c38c7872cca23c8465e7 | |
parent | dc8551007b4625c46f02215ab97943a22a7b7014 (diff) | |
download | sambal-9d5bd7208a48a75786e3135e0f6edf5890a1d849.tar.gz sambal-9d5bd7208a48a75786e3135e0f6edf5890a1d849.tar.lz sambal-9d5bd7208a48a75786e3135e0f6edf5890a1d849.zip |
Rename to sambal.
* README.md: Rename samball to sambal.
* setup.cfg (name): Rename samball to sambal.
(description): Update description.
(url): Update URL.
* src/samball/samball.py: Rename to src/sambal/sambal.py. Replace
samball with sambal.
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | setup.cfg | 6 | ||||
-rw-r--r-- | src/sambal/__init__.py (renamed from src/samball/__init__.py) | 0 | ||||
-rw-r--r-- | src/sambal/sambal.py (renamed from src/samball/samball.py) | 2 |
4 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ -# samball +# sambal -samball provides functions to +sambal provides functions to - uniformly sample a sphere - uniformly sample a spherical cap of a sphere @@ -1,12 +1,12 @@ [metadata] -name = samball +name = sambal version = 0.1.0 author = Arun Isaac author_email = arunisaac@systemreboot.net -description = Sample n-dimensional balls +description = Sample balls, spheres, spherical caps long_description = file: README.md long_description_content_type = text/markdown -url = https://git.systemreboot.net/samball +url = https://git.systemreboot.net/sambal classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) diff --git a/src/samball/__init__.py b/src/sambal/__init__.py index e69de29..e69de29 100644 --- a/src/samball/__init__.py +++ b/src/sambal/__init__.py diff --git a/src/samball/samball.py b/src/sambal/sambal.py index e5d84ad..8e57cca 100644 --- a/src/samball/samball.py +++ b/src/sambal/sambal.py @@ -1,4 +1,4 @@ -# samball --- Sample n-dimensional balls +# sambal --- Sample balls, spheres, spherical caps # Copyright © 2021 Arun I <arunisaac@systemreboot.net> # Copyright © 2021 Murugesan Venkatapathi <murugesh@iisc.ac.in> # |