-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
45 lines (42 loc) · 1.29 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
45
from setuptools import setup, find_packages
with open("README_RAW.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="deepsig",
version="1.2.8",
author="Dennis Ulmer",
description="Easy Significance Testing for Deep Neural Networks.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kaleidophon/deep-significance",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license="GPL",
python_requires=">=3.7.0",
keywords=[
"machine learning",
"deep learning",
"reinforcement learning",
"computer vision",
"natural language processing",
"nlp",
"rl",
"cv",
"statistical significance testing",
"statistical hypothesis testing",
"significance test",
"statistical significance",
"pytorch",
"tensorflow",
"numpy",
"jax",
],
packages=find_packages(exclude=["docs", "dist"]),
install_requires=required,
)