Skip to content

Commit

Permalink
Remove usage of setup.py develop with tox, reactivate sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
zertrin committed Mar 30, 2017
1 parent 667e908 commit 35a793a
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ before_install:
install:
- pip install tox-travis
- tox --version
- python setup.py develop
script:
- tox -v
- tox --recreate -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
Expand Down
File renamed without changes.
22 changes: 22 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include CHANGELOG.md
include LICENSE
include MANIFEST.in
include README.md
include requirements_dev.txt
include setup.cfg
include setup.py
include tox.ini

recursive-include tests *

prune .cache
prune .tox
prune build
prune dist
prune dist_archive

global-exclude __pycache__
global-exclude .coverage
global-exclude *.py[co]
global-exclude *.db
global-exclude .git*
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
2 changes: 1 addition & 1 deletion src/clikraken/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__summary__ = "Command-line client for the Kraken exchange"
__url__ = "https://github.com/zertrin/clikraken"

__version__ = '0.4.0'
__version__ = '0.4.1-alpha.1'

__author__ = "Marc Gallet"
__email__ = "[email protected]"
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist = flake8,py34,py35,py36
skip_missing_interpreters = True
skipsdist = True

[testenv]
basepython =
flake8: {env:TOXPYTHON:python3}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}
Expand All @@ -20,7 +20,6 @@ commands =
[testenv:flake8]
deps =
-r{toxinidir}/requirements_dev.txt
usedevelop = false
commands =
flake8 src tests setup.py

Expand Down

0 comments on commit 35a793a

Please sign in to comment.