-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 932 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 932 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
from setuptools import setup, find_packages
with open("asyncio_nutclient/version.py", "r") as f:
exec(f.read())
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="asyncio_nutclient",
version=__version__,
packages=find_packages(),
package_data={
"asyncio_nutclient": ["py.typed"],
},
url="https://github.com/vincentto13/asyncio_nutclient",
author="Paweł Rapkiewicz",
author_email="pawel.rapkiewicz@gmail.com",
description="Library that talks Network UPS Tools Daemon in AsyncIO way.",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT License",
license_files = ('LICENSE',),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
],
)