-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1 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
import setuptools
from homing_search import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="homing-search-keras",
version=__version__,
author="Andrew de Jonge",
author_email="[email protected]",
description="Smart hyperparameter optimization in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/talkingtoaj/homing_search",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires='>=3.6',
)
# To push a new Version
# 1. Update version number in __init__.py file
# 2. $ python setup.py sdist bdist_wheel
# 3. $ python -m twine upload dist/*