forked from nmakel/solaredge_setapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (30 loc) · 942 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (30 loc) · 942 Bytes
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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="solaredge_setapp",
version="0.1.2",
description="SolarEdge SetApp protocol buffers parser library",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT License",
author="nmakel",
author_email="",
url="https://github.com/nmakel/solaredge_setapp",
packages=["solaredge_setapp"],
include_package_data=True,
install_requires=[
"protobuf>=3.6.1",
"requests>=2.12.4"
],
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
]
)