From b380b8d3fd604a4a3a9c4627b09fd1f0c317e847 Mon Sep 17 00:00:00 2001 From: Owais Date: Wed, 13 Sep 2017 16:35:35 +0500 Subject: [PATCH] PyPI Upload --- setup.cfg | 2 ++ setup.py | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a289cac --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup + +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', + author = 'soachishti', + author_email = 'soachishti@outlook.com', + url = 'https://github.com/soachishti/moss.py', # use the URL to the github repo + download_url = 'https://github.com/soachishti/moss.py/archive/v1.0.0.tar.gz', # I'll explain this in a second + keywords = ['moss', 'similarity', 'detecting', 'plagiarism'], # arbitrary keywords + classifiers = [], +) \ No newline at end of file