-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b380b8d
commit 197c1c9
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|