-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (36 loc) · 1.01 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
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
LICENSE = (HERE / "LICENSE").read_text()
setuptools.setup(
name="AnICA",
version="0.1.0",
description="Analyzing Inconsistencies of Code Analayzers",
long_description=README,
long_description_content_type="text/markdown",
author="Fabian Ritter",
author_email="[email protected]",
license=LICENSE,
packages=setuptools.find_packages(exclude=('tests',)),
install_requires=[
"iwho",
"pytest",
"graphviz",
"editdistance",
"progress",
"pandas",
"seaborn",
"python-sat",
"ortools",
],
scripts=[
"tool/anica-create-filter",
"tool/anica-discover",
"tool/anica-generalize",
"tool/anica-make-configs",
"tool/anica-check-predictors",
],
python_requires=">=3"
)