Skip to content

Commit

Permalink
Add travis pypi support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrichar1 committed Feb 7, 2020
1 parent 1aa1f99 commit a80429e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,13 @@ cache:
pip: true
install: pip install -r requirements.txt
script: tox
deploy:
- provider: pypi
user: "__token__"
# password: is defined via encrypted env var $PYPI_PASSWORD (stored on travis server)
skip_cleanup: true
distributions: "sdist bdist_wheel"
on:
tags: true
repo: authomaticliveandletdie

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
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@

setup(
name=NAME,
version='0.0.6',
version='0.0.7',
packages=find_packages(),
install_requires=['requests', 'werkzeug'],
package_data={'': ['*.txt', '*.rst']},
author='Peter Hudec',
author_email='[email protected]',
maintainer='Authomatic Project Community',
maintainer_email='[email protected]',
description='Simplifies launching and terminating of web development '
'servers from BDD and functional tests.',
long_description=open(os.path.join(HERE, 'README.rst')).read(),
Expand Down

0 comments on commit a80429e

Please sign in to comment.