Skip to content

Commit

Permalink
Make travis ci publish to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobGM committed Feb 14, 2018
1 parent 7060544 commit 3831e73
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,11 @@ script:
- coverage report -m
after_success:
- coveralls
deploy:
provider: pypi
user: jakobgm
password:
secure: G84gKVBTjQzm3kLc4VkyQwKL2MY9PSm9Yp6O1Q/FxaBzw5v+P8MGcljwwri0iRc3jppfsuoUFegFHmKg3ufNGINTlVPvSQBIm/UyMxsLgu7BV8aQK5o2E5XN/Q3ET4MlIz7Qpypy8iBs3omNRD+pgSgyRmkk2XOufMw+C9cSM+4udCrXE2HA+4mJVXNs63rmtLCwRQDJ/C5+LtwycuoyZeIvIwrOS9G/PtauUZu+Qv/KmRan7kwaC4zNJHw5GVGsUJ0ozj1PwQJ1uL/+Gb0oUiCWe1m79+XLDtiBgVwQmBeVO9flxJIET5ggZ/Vyku/6qidovMzkiVxX9bkoFd4dU7aFpD7SE8pHpWIguVnYhDE0Xzw3C0JxfUNDGKDPbWRgTzCyMWlTUTqxgXB2/CSaATGZ/DbVR5OBdQwPVF/+qKANxvtpSnJr4NhfjreK4zJ0q32hLz19KOH62yHZNeo7U0Z8EMx6JMPLYFv1FI+WZStkj0JrFJfQ/zG7PRUE2iuE4CXnh5egaRF/jmPsrm/Qljstz/PHtxHuETOxgUyRViscN+XtdCMimqFFKy7CV+kYc9ZzIRqRBa5KHEcMg7kqN5C8hs6ETVHpIAyp2XBeiX5NsJE+vnd0HHj0a7F1KEfz2pflORBnpfU8iz2dpDiMYfRQx1W3wDwuhnJNtMVJ/4g=
distributions: "sdist bdist_wheel"
on:
tags: true
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
#!/usr/bin/env python3.6
"""Distribution and installation of Astrality."""

from pathlib import Path

from setuptools import find_packages, setup

def readme():
with open(Path(__file__).parent / 'README.rst') as file:
return file.read()

setup(
name='astrality',
version='0.0.16',
version='0.1',
packages=find_packages(),
install_requires=[
'astral',
Expand All @@ -20,7 +26,7 @@
author='Jakob Gerhard Martinussen',
author_email='jakobgm@gmail.com',
description='A dynamic configuration file manager.',
long_description='See documentation at: https://github.com/JakobGM/astrality',
long_description=readme(),
license="MIT",
keywords="unix configuration management",
url="http://github.com/JakobGM/astrality",
Expand Down

0 comments on commit 3831e73

Please sign in to comment.