-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 892 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="unitedenergy-usage-data",
version="0.0.1",
author="Ettienne Gous",
author_email="ettiennegous@hotmail.com",
description="Energy Easy helper class",
long_description="This helper class is to read electricity usage data from Unit Energy's Energy Easy portal. United Energy is an electricity distributor for Melbourne Victoria's south eastern suburbs and the Mornington Peninsula.",
long_description_content_type="text/markdown",
url="https://github.com/ettiennegous/united-energy-usage-data",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)