Change project name to Thun.

I waited too long to upload to PyPI and some other bastard snagged the name.  I originally wanted to call it "Thun" as a tribute to Manfred von Thun, but I was concerned that this might seem to violate the thrid clause in the license of the original Joy code, to wit:

3. The name of the author may not be used to endorse or promote products  derived from this software without specific prior written permission.

Since the author is deceased I don't know of whom to ask permission to call this project Thun, but since I am not trying to "endorse or promote" this project with his name it should be alright.  In any event if anyone complains I can rename the project again.
This commit is contained in:
Simon Forman
2018-04-21 21:26:41 -07:00
parent 92c15a73e3
commit 669c86cbf1
12 changed files with 60 additions and 57 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ VERSION = 0.1.0
clean:
$(RM) -r Joypy.egg-info/ dist/ $(TESTDIR)
$(RM) -r Thun.egg-info/ dist/ $(TESTDIR)
find . -name '*.pyc' | xargs $(RM)
sdist:
@@ -19,7 +19,7 @@ test: sdist
$(RM) -r $(TESTDIR)
virtualenv --system-site-packages --never-download $(TESTDIR)
. $(TESTDIR)/bin/activate && \
pip install --no-cache-dir --no-index ./dist/Joypy-$(VERSION).tar.gz
pip install --no-cache-dir --no-index ./dist/Thun-$(VERSION).tar.gz
echo "Type: source $(TESTDIR)/bin/activate"