Skip to content

Commit

Permalink
PyPI Upload
Browse files Browse the repository at this point in the history
  • Loading branch information
soachishti committed Sep 13, 2017
1 parent ce4d711 commit b380b8d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = [],
)

0 comments on commit b380b8d

Please sign in to comment.