-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (33 loc) · 1.3 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '1.1.0'
DESCRIPTION = 'Tensorflow/Keras Model Profiler: Tell you model memory requirement, no. of parameters, flops etc.'
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
INSTALL_REQUIRES = [
'numpy',
'tabulate'
]
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="model_profiler",
version=VERSION,
author="Talha Ilyas",
LICENSE = 'MIT License',
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
url = 'https://github.com/Mr-TalhaIlyas/Tensorflow-Keras-Model-Profiler',
keywords=['python', 'model_profile', 'gpu memory usage',
'model flops', 'model parameters', 'gpu availability'
'mdoel memory requirement','weights memory requirement'],
classifiers= [
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)