Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 823b759

Browse files
committed
add setup.py file
1 parent 8046b6e commit 823b759

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

setup.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import os
2+
3+
import setuptools
4+
5+
6+
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
7+
with open(os.path.join(PACKAGE_ROOT, 'README.md')) as f:
8+
README = f.read()
9+
10+
with open(os.path.join(PACKAGE_ROOT, 'requirements.txt')) as f:
11+
REQUIREMENTS = [r.strip() for r in f.readlines()]
12+
13+
14+
setuptools.setup(
15+
name='hypersearch',
16+
version='0.1',
17+
description='Simple but powerful hyperparameter search for machine learning.',
18+
long_description=README,
19+
packages=setuptools.find_packages(exclude=('tests',)),
20+
install_requires=REQUIREMENTS,
21+
author='Sarth Frey',
22+
author_email='[email protected]',
23+
url='https://github.com/sarthfrey/hypersearch',
24+
platforms='Posix; MacOS X; Windows',
25+
include_package_data=True,
26+
zip_safe=False,
27+
classifiers=[
28+
'Development Status :: 4 - Beta',
29+
'Intended Audience :: Developers',
30+
'Operating System :: OS Independent',
31+
'Programming Language :: Python :: 2',
32+
'Programming Language :: Python :: 2.7',
33+
'Topic :: Internet',
34+
],
35+
)

0 commit comments

Comments
 (0)