diff --git a/README.md b/README.md index 06f17e0..3d931ed 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,6 @@ m.saveWebPage(url, "submission/report.html") ## Similar Project -* [Original shell script](http://moss.stanford.edu/general/scripts.html) * [ocaml-moss](https://github.com/Chris00/ocaml-moss) OCaml client * [cl-moss](https://github.com/wsgac/cl-moss) Common Lisp * [moji](https://github.com/nordicway/moji) Java version diff --git a/setup.py b/setup.py index a289cac..414ed4e 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,18 @@ from setuptools import setup +try: + import pypandoc + long_description = pypandoc.convert('README.md', 'rst') + long_description = long_description.replace("\r","") +except(IOError, ImportError): + long_description = open('README.md').read() + setup( name = 'moss.py', packages = ['moss'], # this must be the same as the name above - version = '1.0.0', - description = 'A Python client for moss: A System for Detecting Software Similarity', + version = '1.0.1', + description = 'A Python client for Moss: A System for Detecting Software Similarity', + long_description=long_description, author = 'soachishti', author_email = 'soachishti@outlook.com', url = 'https://github.com/soachishti/moss.py', # use the URL to the github repo