-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.15 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from eems import __project__, __version__, __author__
setup(
name=__project__,
version=__version__,
description='eems - easy energy monitoring system',
long_description='An easy application to establish an energy monitoring '
'system for raspberry pi and ds18b20 temperature sensors.',
url='https://github.com/enricoba/eems',
author=__author__,
author_email='henrik.baran@online.de, a.hoehn@mailbox.org',
license='MIT',
platforms='',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Education',
'Intended Audience :: Manufacturing',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='easy energy monitoring system raspberrry pi',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={
'eems': ['data/*.txt'],
},
entry_points={
'console_scripts': ['eems = eems.scripts:main']
}
)