-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 881 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
25
26
27
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "colorbot-trainer",
version = "0.0.1",
author = "Andrew Ortman",
author_email = "[email protected]",
description = ("An attempt to create an ML model that learns color names"),
license = "MIT",
keywords = "tensorflow color recurrent lstm",
url = "http://colorbot.cleverpebble.com",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
long_description=read('./README.md'),
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License"
],
install_requires = [
"tensorflow-gpu==1.2.0",
],
)