From 872b208967766e1a87b75b61e913a72e8839eb92 Mon Sep 17 00:00:00 2001 From: Liam Cooke Date: Wed, 17 May 2017 18:46:02 +1000 Subject: [PATCH] Update README & source dist creation --- MANIFEST.in | 3 ++- Makefile | 2 +- README.rst | 5 ++--- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 55447d0..87602e8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ -include see/*.py setup.py tests/test_*.py README.rst CHANGELOG.rst AUTHORS.rst CODE_OF_CONDUCT.md LICENSE +include LICENSE +include *.rst *.md diff --git a/Makefile b/Makefile index 5f98553..5f9d1d3 100644 --- a/Makefile +++ b/Makefile @@ -20,4 +20,4 @@ clean: .PHONY: dist dist: - python setup.py sdist --formats=bztar,gztar,zip + python3 setup.py sdist --formats=bztar,gztar,zip diff --git a/README.rst b/README.rst index 502cf60..cd1b0f2 100644 --- a/README.rst +++ b/README.rst @@ -15,8 +15,7 @@ you what you can do with things. Supports Python 2.6+ and 3.3+. Also works in iPython and PyPy. -License - BSD (see the *LICENSE* file) +Licensed under the BSD 3-Clause License. See the *LICENSE* file. Contributions are welcome. See the *CODE_OF_CONDUCT.md*, *CHANGELOG.rst* and *AUTHORS.rst* files. @@ -27,7 +26,7 @@ Install To install **see**, run:: - $ pip install --upgrade see + $ pip3 install --upgrade see Usage diff --git a/setup.py b/setup.py index 3323ce4..0a03a5f 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ author_email='see@araile.com', license='BSD License', url='https://araile.github.io/see/', - py_modules=['see'], + packages=['see'], install_requires=[], test_suite='tests', tests_require=[lib for lib in tests_require if lib],