-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 903 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
28
29
30
31
32
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read().strip()
setup(
name='Tensorplex',
version='0.9',
author='Jim Fan',
url='http://github.com/SurrealAI/Tensorplex',
description='Distributed wrapper for Tensorboard',
long_description=read('README.rst'),
keywords=['Machine Learning',
'Distributed Computing'],
license='GPLv3',
packages=[
package for package in find_packages() if package.startswith("tensorplex")
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: Console",
"Programming Language :: Python :: 3"
],
python_requires='>=3.5',
include_package_data=True,
zip_safe=False
)