-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathsetup.py
executable file
·61 lines (58 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
requirements = []
with open("requirements.txt", "r") as f:
for line in f:
requirements.append(line.strip())
# noinspection PyInterpreter
setuptools.setup(
name="autoPyTorch",
version="0.0.3",
author="AutoML Freiburg",
author_email="zimmerl@informatik.uni-freiburg.de",
description=("Auto-PyTorch searches neural architectures using BO-HB"),
long_description=long_description,
url="https://github.com/automl/Auto-PyTorch",
long_description_content_type="text/markdown",
license="3-clause BSD",
keywords="machine learning algorithm configuration hyperparameter"
"optimization tuning neural architecture deep learning",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3',
platforms=['Linux'],
install_requires=requirements,
include_package_data=True,
extras_require={
"test": [
"matplotlib",
"pytest",
"pytest-xdist",
"pytest-timeout",
"flaky",
"pyarrow",
"pre-commit",
"pytest-cov",
"codecov",
"pep8",
"mypy",
],
"examples": [
"matplotlib",
"jupyter",
"notebook",
"seaborn",
],
"docs": ["sphinx", "sphinx-gallery", "sphinx_bootstrap_theme", "numpydoc"],
},
test_suite="pytest",
data_files=[('configs', ['autoPyTorch/configs/default_pipeline_options.json'])]
)