-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
24 lines (21 loc) · 813 Bytes
/
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
"""setup.py for skeletor """
import setuptools
install_requires = [
'pyyaml>=3.12',
'ray>=0.4.0',
'track-ml>=0.1',
'awscli',
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name="skeletor-ml",
version="0.1.4",
author="Noah Golmant",
author_email="[email protected]",
description="A lightweight module for research experiment reproducibility and analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/noahgolmant/skeletor",
license='MIT License',
packages=setuptools.find_packages(),
install_requires=install_requires)