-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (28 loc) · 1013 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
from setuptools import setup
try:
from pypandoc import convert_file
long_description = convert_file('README.md', 'md')
except ImportError:
long_description = """
The YoMo project aims to empower people using low-cost open-hardware energy monitor.
With YoMoPie, we provide a user-oriented energy monitor based on the Raspberry Pi platform that aims to enable intelligent energy services in households.
More information at: https://github.com/klemenjak/YoMoPie
"""
setup(name='YoMoPie',
description='YoMoPie Library',
long_description=long_description,
version='0.1',
url='https://github.com/klemenjak/YoMoPie',
author='S. Jost',
author_email='stefan.jost@aau.at',
license='Apache2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'
],
packages=['YoMoPie'],
install_requires=[
'spidev',
'RPi.GPIO'
])