-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.06 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
from setuptools import setup, find_packages
import os
VERSION = '1.1.3.2'
DESCRIPTION = 'Tensorflow ML'
with open("README.md", 'r') as f:
LONG_DESCRIPTION = f.read()
lib_folder = os.path.dirname(os.path.realpath(__file__))
requirement_path = f"{lib_folder}/requirements.txt"
install_requires = []
if os.path.isfile(requirement_path):
with open(requirement_path) as f:
install_requires = f.read().splitlines()
setup(
name="tensorflow-ml",
version=VERSION,
author="Siddhant Pathak",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown", # Specify the type of markup used in README.md
packages=find_packages(),
install_requires=install_requires,
keywords=['python', 'tensorflow', 'ml', 'keras'],
classifiers= [
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
)