-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (29 loc) · 1.02 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
34
35
import os
import setuptools
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PACKAGE_ROOT, 'README.md')) as f:
README = f.read()
with open(os.path.join(PACKAGE_ROOT, 'requirements.txt')) as f:
REQUIREMENTS = [r.strip() for r in f.readlines()]
setuptools.setup(
name='hypersearch',
version='0.1',
description='Simple but powerful hyperparameter search for machine learning.',
long_description=README,
packages=setuptools.find_packages(exclude=('tests',)),
install_requires=REQUIREMENTS,
author='Sarth Frey',
author_email='[email protected]',
url='https://github.com/sarthfrey/hypersearch',
platforms='Posix; MacOS X; Windows',
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
],
)