-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 928 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
from setuptools import setup
import versioneer
requirements = [
# package requirements go here
]
setup(
name='lazyprofiler',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Lazy Profiler is a simple utility to collect CPU, GPU, RAM and GPU Memorystats while the program is running.",
license="MIT",
author="Shankar Rao Pandala",
author_email='[email protected]',
url='https://github.com/shankarpandala/lazyprofiler',
packages=['lazyprofiler'],
entry_points={
'console_scripts': [
'lazyprofiler=lazyprofiler.cli:cli'
]
},
install_requires=requirements,
keywords='lazyprofiler',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)