-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (29 loc) · 1018 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
33
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="gpumonitor",
version="0.1.2",
description="GPU Monitoring Callbacks for TensorFlow and PyTorch Lightning",
long_description=long_description,
long_description_content_type="text/markdown",
author="Raphael Meudec",
author_email="[email protected]",
url="https://github.com/sicara/gpumonitor",
license="MIT",
install_requires=["gpustat>=0.6.0"],
extras_require={
"publish": ["bumpversion>=0.5.3", "twine>=1.13.0"],
},
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
)