-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (43 loc) · 1.28 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import tensorcraft
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
with open(os.path.join(here, "README.md"), encoding="utf-8") as md:
long_description = md.read()
setuptools.setup(
name="tensorcraft",
version=tensorcraft.__version__,
long_description=long_description,
long_description_content_type="text/markdown",
description="TensorCraft is a server for Keras models",
url="https://github.com/netrack/tensorcraft",
author="Yasha Bubnov",
author_email="girokompass@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
packages=setuptools.find_packages(exclude=["tests"]),
tests_require=[
"pytest-aiohttp>=0.3.0",
"cryptography>=2.7",
],
install_requires=[
"aiojobs>=0.2.2",
"aiofiles>=0.4.0",
"aiorwlock>=0.6.0",
"aiohttp>=3.5.4",
"flagparse>=0.0.2",
"humanize>=0.5.1",
"numpy>=1.16.3",
"pid>=2.2.3",
"pyyaml>=5.1.1",
"semver>=2.8.1",
"tensorflow>=2.0.0a0",
"tinydb>=3.13.0",
],
entry_points={
"console_scripts": ["tensorcraft = tensorcraft.shell.main:main"],
},
)