-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.09 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
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
def requires():
with open("requirements.txt", "r") as f:
return [r.strip() for r in f.readlines()]
setup(name='omamittari',
version='0.9.0',
description='A Python client for the OmaMittari electricity API',
url='https://github.com/mikaraunio/omamittary-py',
author='Mika Raunio',
author_email='[email protected]',
license='BSD',
packages=['omamittari'],
install_requires=requires(),
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)