Skip to content

Commit

Permalink
fix: well formatted pypi readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ifedapoolarewaju committed Jul 19, 2017
1 parent 092be72 commit b216df8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 67 deletions.
60 changes: 0 additions & 60 deletions README.rst

This file was deleted.

1 change: 1 addition & 0 deletions docs/source/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pypandoc==1.4
Sphinx==1.6.3
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ py==1.4.33
pycurl==7.43.0
Pygments==2.2.0
pylint==1.7.1
pypandoc==1.4
pyparsing==2.2.0
pytest==3.0.3
pytest-cov==2.3.1
Expand Down
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
import sys
import pypandoc
from setuptools import setup

import transloadit


install_requires = ['requests==2.11.1', 'six==1.10.0', 'tuspy==0.1']

PY_VERSION = sys.version_info[0], sys.version_info[1]
if PY_VERSION < (3, 0):
long_description = open('README.rst').read()
else:
long_description = open('README.rst', encoding='utf-8').read()
long_description = pypandoc.convert('README.md', 'rst')
long_description = long_description.replace("\r","")

setup(
name='pytransloadit',
Expand All @@ -21,7 +19,7 @@
install_requires=install_requires,
author_email='ifedapoolarewaju@gmail.com',
description="A Python Integration for https://transloadit.com file uploading and encoding service.",
long_description=(long_description),
long_description=long_description,
packages=['transloadit'],
include_package_data=True,
platforms='any',
Expand Down
2 changes: 1 addition & 1 deletion transloadit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.3'

0 comments on commit b216df8

Please sign in to comment.