Back to distutils, add upload command
authorVivien Maisonneuve <v.maisonneuve@gmail.com>
Sat, 23 Aug 2014 07:52:11 +0000 (09:52 +0200)
committerVivien Maisonneuve <v.maisonneuve@gmail.com>
Sat, 23 Aug 2014 07:52:11 +0000 (09:52 +0200)
Makefile
setup.py

index 9b6366b..93cf689 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,14 +14,15 @@ default:
        @echo "  make doc              generate the documentation"
        @echo "  make view_doc         open the documentation index"
        @echo "  make clean            remove the generated files"
        @echo "  make doc              generate the documentation"
        @echo "  make view_doc         open the documentation index"
        @echo "  make clean            remove the generated files"
+       @echo "  make upload           upload the module on PyPI"
 
 .PHONY: build
 build:
        $(SETUP) build_ext --inplace
 
 .PHONY: test
 
 .PHONY: build
 build:
        $(SETUP) build_ext --inplace
 
 .PHONY: test
-test:
-       $(SETUP) test
+test: build
+       $(PYTHON) -m unittest -v
 
 .PHONY: doc
 doc:
 
 .PHONY: doc
 doc:
@@ -36,3 +37,7 @@ clean:
        $(RM) build dist MANIFEST venv LinPy.egg-info $(NAME)/_islhelper.*.so
        find . -name __pycache__ | xargs $(RM)
        $(MAKE) -C doc $@
        $(RM) build dist MANIFEST venv LinPy.egg-info $(NAME)/_islhelper.*.so
        find . -name __pycache__ | xargs $(RM)
        $(MAKE) -C doc $@
+
+.PHONY: upload
+upload:
+       $(SETUP) register sdist upload
index 2aff11f..72569e4 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
 # You should have received a copy of the GNU General Public License
 # along with LinPy.  If not, see <http://www.gnu.org/licenses/>.
 
 # You should have received a copy of the GNU General Public License
 # along with LinPy.  If not, see <http://www.gnu.org/licenses/>.
 
-from setuptools import setup, Extension
+from distutils.core import setup, Extension
 
 
 with open('linpy/_version.py') as file:
 
 
 with open('linpy/_version.py') as file:
@@ -39,6 +39,5 @@ setup(
         Extension('linpy._islhelper',
             sources=['linpy/_islhelper.c'],
             libraries=['isl'])
         Extension('linpy._islhelper',
             sources=['linpy/_islhelper.c'],
             libraries=['isl'])
-    ],
-    test_suite='linpy.tests'
+    ]
 )
 )