Skip to content

Commit

Permalink
Delete README.rst as it is no longer needed
Browse files Browse the repository at this point in the history
Pypi.org now supports Markdown
  • Loading branch information
Flimm committed Jun 4, 2018
1 parent 4bbe7d3 commit f9022fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 40 deletions.
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ pyarabic/number.py
pyarabic/propernouns.py
pyarabic/stack.py
pyarabic/unshape.py
README.md
LICENSE
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ install3:
publish:
git push origin master

md2rst:
pandoc -s -r markdown -w rst README.md -o README.rst
md2html:
pandoc -s -r markdown -w html README.md -o README.html

Expand Down
37 changes: 0 additions & 37 deletions README.rst

This file was deleted.

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# to install type:
# python setup.py install --root=/
def readme():
with open('README.rst') as f:
with open('README.md') as f:
return f.read()

setup (name='PyArabic', version='0.6.4',
Expand All @@ -14,6 +14,7 @@ def readme():
license='GPL',
description="Arabic text tools for Python",
long_description = readme(),
long_description_content_type='text/markdown',
package_dir={'pyarabic': 'pyarabic',},
packages=['pyarabic'],
package_data = {
Expand Down

0 comments on commit f9022fb

Please sign in to comment.