forked from nordicopen/pyeasee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 833 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
"""Setup script for easee"""
import os.path
from setuptools import setup
# This call to setup() does all the work
setup(
name="pyeasee",
version="0.7.37",
description="Easee EV charger API library",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/fondberg/pyeasee",
author="Niklas Fondberg",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=["pyeasee"],
include_package_data=True,
install_requires=["aiohttp", "signalrcore==0.8.8", "websocket-client==0.54.0"],
entry_points={"console_scripts": ["pyeasee=pyeasee.__main__:main"]},
)