Skip to content

Commit

Permalink
Adding missing info for pypi (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSchweizer authored Jan 30, 2019
1 parent d2f0b15 commit e41cf08
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ after_success:
- python-codacy-coverage -r coverage.xml
deploy:
provider: pypi
skip_existing: true
distributions: sdist bdist_wheel
user: Anton-4
password:
password:
secure: ZIeVakvSeDwoQhiGyMPx1CJGhk/RoOrAkopysX3v3bDTnsDmEynsmXkkfd4GpJif+w0jZNWIqwwCE5ycioeReNtNhe18Ii9vzpxAIOeTNnfXqld16Zi9QH6nydWISb+LjAV23xafi35Rp6ahteSE7LqYu9b6yEaxdjZOsUTukVMni/Kpy4SDGyk7vL/jnIxzLVJfBW6DVJCGeGEno1ioqgkvBzoCl1W+xNKgE8g1Bqnmup/8Q0MyqG5rr+Gs1UkPVt9G+1xiTbp3KKUiz1XtIIeJKiXwBvutqWBP0qESeIFfrEE5Xx08oW+QW6wpEDKiuLrZpUClwrzCQa2Ru6RcZB1Sua+6t+DIjl40E2MZTC/USBd29iN3akp4vC1GSjne/leHCcwwitev2O4tvmhNfh0gMXjHWSR8b0A/AD3ySz95XsoMz6YY3c/zPWM5wclJexw0GU8LmUg5MOr+oD93rDyEL/htNVq0xUlrQELAexj4Y6vI8p/yFOej9gSJHMlfkXoOfpY/dzmH7uyWC5qfE1D2K0fc5qpx6zyzw6avDM9m1gdNihWXqxjYxeOmmuD1wQXRg6cNAPeSHLLriiurIpZ3mclRvW/FqDZOGFQCrMidOwJB0Atg1GfnP3qTOs33jYnxtzTVqaJmsukV6FqJa6WDiNGi5OJ9D4Xt5+M4ou0=
on:
tags: true
repo: PaulSchweizer/ascii-canvas

branch: master
python: '3.6'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Version](https://img.shields.io/pypi/v/ascii_canvas.svg)](https://pypi.org/project/ascii_canvas/)
[![Build Status](https://travis-ci.org/PaulSchweizer/ascii-canvas.svg?branch=master)](https://travis-ci.org/PaulSchweizer/ascii-canvas) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/1e97852797d14c679d7c89337b022c92)](https://www.codacy.com/app/paulschweizer/ascii-canvas?utm_source=github.com&utm_medium=referral&utm_content=PaulSchweizer/ascii-canvas&utm_campaign=Badge_Grade)


Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
from setuptools import find_packages


with open("README.md") as stream:
long_description = stream.read()

setup(name='ascii-canvas',
version='1.2.0',
version='1.2.1',
author='Paul Schweizer',
author_email='paulschweizer@gmx.net',
description='Treat strings like Items on a 2D Canvas.',
long_description='',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PaulSchweizer/ascii-canvas',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit e41cf08

Please sign in to comment.