diff --git a/.travis.yml b/.travis.yml index d573cac..ecaaf5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 + diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..2a9acf1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py index acc645c..5e6c31f 100644 --- a/setup.py +++ b/setup.py @@ -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='peterhudec@peterhudec.com', + maintainer='Authomatic Project Community', + maintainer_email='authomaticproject@protonmail.com', description='Simplifies launching and terminating of web development ' 'servers from BDD and functional tests.', long_description=open(os.path.join(HERE, 'README.rst')).read(),