File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22from setuptools .command .install import install
33
4+
5+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
6+ long_description = fh .read ()
7+
48setup (
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" ,
9161017 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)
You can’t perform that action at this time.
0 commit comments