-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
31 lines (28 loc) · 1.13 KB
/
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
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.md") as f:
README = f.read()
setup(
name='mcrit',
version="1.3.17",
description='MCRIT is a framework created for simplified application of the MinHash algorithm to code similarity.',
long_description_content_type="text/markdown",
long_description=README,
author='Daniel Plohmann, Manuel Blatt, Steffen Enders, Paul Hordiienko',
author_email='[email protected]',
url='https://github.com/danielplohmann/mcrit',
license="NU General Public License v3 (GPLv3)",
packages=find_packages(exclude=("tests", "data", "docs", "examples", "plugins")),
install_requires=open("requirements.txt").read().splitlines(),
data_files=[
("", ["LICENSE", "requirements.txt"]),
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)