Skip to content

Commit ba57d65

Browse files
committed
update setup.py
1 parent 8dde624 commit ba57d65

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
from setuptools import setup, find_packages
22
from setuptools.command.install import install
33

4+
5+
with open("README.md", "r", encoding="utf-8") as fh:
6+
long_description = fh.read()
7+
48
setup(
59
name="hyperparameter",
610
version="0.0.1",
7-
description="",
11+
description="A hyper-parameter library for researchers, data scientists and machine learning engineers.
12+
",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
815
author="Reiase",
916
author_email="[email protected]",
1017
url="https://github.com/reiase/hyperparameter",
18+
classifiers=[
19+
"Programming Language :: Python :: 3",
20+
"Operating System :: OS Independent",
21+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
22+
],
1123
packages=find_packages(),
1224
license="http://www.apache.org/licenses/LICENSE-2.0",
1325
)

0 commit comments

Comments
 (0)