generated from vikpe/python-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (39 loc) · 1.14 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
40
41
42
43
44
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
MAJOR, MINOR, MICRO = 0, 1, 1
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
setup(
name="dnn-tip",
version=__VERSION__,
description=(
"A collection of DNN test input prioritizers,"
"in particular neuron coverage and surprise adequacy."
),
long_description_content_type="text/markdown",
long_description=readme(),
# keywords="",
url="https://github.com/testingautomated-usi/dnn-tip",
author="Michael Weiss",
author_email="[email protected]",
license="MIT",
packages=["dnn_tip"],
install_requires=["psutil", "scikit-learn", "tqdm", "packaging"],
extras_require={
"lint": [
"flake8==3.8.2",
"black==22.3.0",
"isort==5.6.4",
"docstr-coverage==2.2.0",
],
"test": ["pytest>=6.2.5"],
},
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)