diff --git a/Makefile b/Makefile index e225b137..9251923c 100644 --- a/Makefile +++ b/Makefile @@ -23,3 +23,7 @@ charade: git clone https://github.com/sigmavirus24/charade.git mv charade/charade requests/packages/ rm -fr charade + +publish: + python setup.py sdist upload + python setup.py bdist_wheel upload diff --git a/requirements.txt b/requirements.txt index c88bf435..2bedd65e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ py==1.4.12 pytest==2.3.4 -invoke==0.2.0 \ No newline at end of file +invoke==0.2.0 +wheel diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..5e409001 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[wheel] +universal = 1