Skip to content

Commit

Permalink
Fix setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashGordon committed Aug 3, 2019
1 parent 4880621 commit ba17b3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ script:
- tox
deploy:
provider: pypi
skip_cleanup: true
distributions: "bdist_wheel"
user:
secure: "1WDqOWBY6tVEDRElNWLEws22r4GrHIn8pclYv2ivKJps4JzN3kREbuW/11oW6Cz8UOtMhUr8RwMtbupq73He9lP0y6AYrd4dr4EAW+G4woblMGo5k2L/m8Yt13RQ/jwP83+XNmdaGmZaP6TqN1/zYL9q2wAImoX0IqNu2csFsAMkVriqeuhy8IRra8YAChgHXHdCFFeZpJcWcZb45ej1sc9MbGgb+55+wVvA/gMzvkBLAEqC/P/Tm5FFvK5WW5vSHVrHMCeZvvh8m8v7vAo2Swx4ITzUvKyE5XdiKDfMrEAK0cW7iz1ghiP//2oKS/JaUNHOSYW/0sebn8EUBdyUSEqt/rN1l1+OietXxK6g3XK+vI/PKWF3ImcxpP0jM8laysLPfhrE6iQvAGJGgJObbpNeCXD7N0bsY5Rtpx8g1obARWLo2LwBEbmWKxtFi6goL2xHdLaGGp/og1bgSZv8h4S/raIOK62Ocu3D7Ju9ArrtCatXJ0sIhK5Nj7CFFEcjU8d+hMybPwspumi7LmULa97dPnRMzc2uJJhUAlINfKgSLXfrxtaThRJjQQKo0J0xcDEFroOIvcjoKQrUADwXyWGNwP6pT5SCDhnGGPnE8RjsSXAk1Qqj6Yl0GcdMwrCJiEp5qSEy9mvXic52jE2gOWdB8beDr2yOOBPdhQgrx1c="
password:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools import setup, find_packages

EXCLUDE_FROM_PACKAGES = ['test', 'test.*', 'test*']
VERSION = '1.0.16'
VERSION = '1.1.3'

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -27,6 +27,7 @@
package_dir={'': 'src'},
description="The lib provides ticker symbols for yahoo and google finance.",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
url="https://github.com/portfolioplus/pytickersymbols",
packages=find_packages('src', exclude=EXCLUDE_FROM_PACKAGES),
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ basepython =
py36: python3.6
commands =
pytest tests/ --cov src/pytickersymbols --cov-report term-missing
python setup.py sdist bdist bdist_wheel
python setup.py bdist_wheel

[testenv:flake8]
max-line-length = 80
Expand All @@ -31,5 +31,5 @@ env =
PYTHONPATH=src/:$PYTHONPATH
norecursedirs =
.tox
testpaths =
testpaths =
tests/

0 comments on commit ba17b3a

Please sign in to comment.