forked from nilmtk/nilm_metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 790 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
from setuptools import setup, find_packages
setup(
name='nilm_metadata',
version='0.1.0',
packages = find_packages(),
install_requires = ['PyYAML', 'jsonschema'],
description='Concatenate and validate NILM metadata',
author='Jack Kelly',
author_email='[email protected]',
url='https://github.com/nilmtk/nilm_metadata',
long_description=open('README.md').read(),
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
],
keywords='smartmeters power electricity energy analytics redd '
'disaggregation nilm nialm'
)