forked from soachishti/moss.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 935 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 = 'mosspy',
packages = ['mosspy'], # this must be the same as the name above
version = '1.0.9',
description = 'A Python client for Moss: A System for Detecting Software Similarity',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'soachishti',
author_email = '[email protected]',
url = 'https://github.com/soachishti/moss.py', # use the URL to the github repo
download_url = 'https://github.com/soachishti/moss.py/releases', # I'll explain this in a second
keywords = ['moss', 'similarity', 'detecting', 'plagiarism'], # arbitrary keywords
classifiers = [],
install_requires=['beautifulsoup4', 'lxml'],
)