Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
soachishti committed Sep 13, 2017
1 parent b380b8d commit 197c1c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
url = 'https://github.com/soachishti/moss.py', # use the URL to the github repo
Expand Down

0 comments on commit 197c1c9

Please sign in to comment.