-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
27 lines (23 loc) · 814 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
from setuptools import setup
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name = "tensor-dash",
version = "1.8.1",
description = "A python package that lets you remotely monitor your deep learning training metrics through it's companion app.",
long_description = readme(),
long_description_content_type = "text/markdown",
url = "https://github.com/CleanPegasus/TensorDash",
authors = "Harshit Maheshwari, Arunkumar L",
author_email = "hmhmrock@gmail.com, arunk609@gmail.com",
license = "MIT",
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"
],
packages = ["tensordash"],
include_package_data = True,
install_requires = ["requests"]
)