-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (39 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
#! /usr/bin/env python
#
# Copyright (C) 2022 Autonomio
import setuptools
DESCRIPTION = 'Energy tracking for your machine learning experiments'
LONG_DESCRIPTION = '''\
EasyEnergy makes it easier to track energy usage for various machine learning
cycles, including model training, model inference and hyperparameter tuning.
'''
DISTNAME = 'EasyEnergy'
MAINTAINER = 'Mikko Kotila'
MAINTAINER_EMAIL = '[email protected]'
URL = 'http://autonom.io'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/autonomio/EasyEnergy/'
VERSION = '0.0.1'
install_requires = ['tensorflow',
'pytorch_lightning',
'codecarbon',
'paramiko']
extras = {'callbacks': ['tensorflow',
'pytorch_lightning',
'codecarbon']}
setuptools.setup(
name=DISTNAME,
version=VERSION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license=LICENSE,
url=DOWNLOAD_URL,
install_requires=install_requires,
extras_requires=extras,
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True
)