forked from gravitino/libripoff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 959 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'''setup file for libripoff
@author: moschlar
'''
from setuptools import setup
# Fix shutdown errors while installing
try:
import multiprocessing # @UnusedImport
import logging # @UnusedImport
except:
pass
setup(
name="libripoff",
version="0.2.1",
author="Christian Hundt, Moritz Schlarb",
author_email="hundt.christian@gmail.com, mail@moritz-schlarb.de",
description="simple library to detect plagiarism in source code",
long_description=open('README.md').read(),
license="BSD",
url="https://github.com/gravitino/libripoff",
packages=["ripoff"],
test_suite='tests',
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
],
install_requires=['numpy', 'dedupe-hcluster', 'matplotlib'],
)