forked from eelkjaer/BarryAPIClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 907 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
import os
from setuptools import setup, find_packages
# Thanks Frankkkkk for inspiring.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="barry-energy-api",
version="1.0.0",
author="Emil Elkjær Nielsen",
author_email="emil@evsn.dk",
description=("Connecting to and getting data from Barry Energy's API (http://barry.energy)"),
license="LICENS",
keywords="python barry energy api electricity prices barry.energy",
url="https://github.com/eelkjaer/BarryAPIClient",
packages=find_packages(),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)