-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (29 loc) · 906 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
30
31
32
33
34
35
36
37
import setuptools
def main():
setuptools.setup(
name="enapter",
version=read_version(),
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
description="Enapter Python SDK",
packages=setuptools.find_packages(),
include_package_data=True,
url="https://github.com/Enapter/python-sdk",
author="Roman Novatorov",
author_email="[email protected]",
install_requires=[
"aiomqtt==1.0.*",
"dnspython==2.6.*",
"json-log-formatter==0.5.*",
],
)
def read_version():
with open("enapter/__init__.py") as f:
local_scope = {}
exec(f.readline(), {}, local_scope)
return local_scope["__version__"]
def read_file(name):
with open(name) as f:
return f.read()
if __name__ == "__main__":
main()