-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 1.06 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
import os
from setuptools import find_namespace_packages
from setuptools import setup
def get_long_description() -> str:
readme_filepath = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_filepath) as f:
return f.read()
setup(
name="hydra-optuna-sweeper",
version="0.0.1",
author="Toshihiko Yanae",
author_email="[email protected]",
description="Hydra Optuna Sweeper plugin",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/toshihikoyanase/hydra-optuna-plugin/",
packages=find_namespace_packages(include=["hydra_plugins.*"]),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
intall_requires=["hydra-core", "optuna"],
include_package_data=True,
)