Skip to content

Commit

Permalink
Use README.md for long description
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma-m committed Feb 25, 2019
1 parent 458a3d5 commit df4bc26
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 145 deletions.
12 changes: 2 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
dist: xenial
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "3.7"
- "nightly"

install:
Expand All @@ -17,11 +14,6 @@ install:
script:
- python setup.py test

before_deploy:
- sudo apt-get -qq update
- sudo apt-get install -y pandoc
- pandoc -f markdown -t rst -o README.rst README.md

deploy:
provider: pypi
user: yuma-m
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ True

## Supported Python Versions
- 2.7
- 3.3 and above
- 3.4 and above

## Links
- PyPI: https://pypi.python.org/pypi/pychord
Expand Down
130 changes: 0 additions & 130 deletions README.rst

This file was deleted.

6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ['.rst', '.md']
# source_suffix = '.rst'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'pychord'
copyright = u'2016, Yuma Mihira'
copyright = u'2016 - 2019, Yuma Mihira'
author = u'Yuma Mihira'

# The version info for the project you're documenting, acts as replacement for
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
packages=find_packages(exclude=['test']),
include_package_data=True,
zip_safe=True,
long_description=open('README.rst').read(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
test_suite='test',
)

0 comments on commit df4bc26

Please sign in to comment.