-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.12 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
from setuptools import setup, find_packages
try:
long_description = open("README.rst", "rt").read()
except IOError:
long_description = ""
PROJECT = "allenopt"
VERSION = "0.0.1"
setup(
name=PROJECT,
version=VERSION,
description="Hyperparameter tuning for AllenNLP using Optuna.",
long_description=long_description,
author="Toshihiko Yanase",
author_email="[email protected]",
url="",
download_url="",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Environment :: Console",
],
platforms=["Any"],
scripts=[],
provides=[],
install_requires=["allennlp", "cliff", "optuna"],
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["allenopt = cli:main"],
"allenopt.command": ["search = cli:Search",],
},
zip_safe=False,
)