-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (37 loc) · 1019 Bytes
/
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
import setuptools
from pathlib import Path
p = Path(__file__)
setup_requires = [
'numpy',
'pytest-runner'
]
install_requires = [
]
test_require = [
'pytest-cov',
'pytest-html',
'pytest'
]
setuptools.setup(
name="thdbonas",
version='0.1.0',
python_requires='>3.5',
author="Koji Ono",
author_email="kbu94982@gmail.com",
description="Pytorch Version: Deep Bayes Optimization for Neural Network Architecture Search (thDBONAS)",
url='https://github.com/0h-n0/thdbonas',
long_description=(p.parent / 'README.md').open(encoding='utf-8').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=test_require,
extras_require={
'docs': [
'sphinx >= 1.4',
'sphinx_rtd_theme']},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)