forked from nilmtk/nilmtk-contrib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (21 loc) · 952 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
from distutils.core import setup
setup(name='nilmtk-contrib',
version='1.0',
description='Python Distribution Utilities',
author='NILMTK developers',
author_email='',
url='https://github.com/nilmtk/nilmtk-contrib',
install_requires=["scikit-learn>=0.21", "keras>=2.2.4", "cvxpy>=1.0.0", "nilmtk", "nilm_metadata"],
packages=['nilmtk_contrib', "nilmtk_contrib.disaggregate"],
package_dir={'nilmtk_contrib': '.', "nilmtk_contrib.disaggregate": "disaggregate"},
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache 2.0',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
],
keywords='smartmeters power electricity energy analytics redd '
'disaggregation nilm nialm'
)