-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 1.2 KB
/
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
from setuptools import setup
setup(
name="Okonf",
version="0.2.2",
description="Asynchronous configuration management based on Python Asyncio",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Hugo Herter",
author_email="[email protected]",
url="https://github.com/hoh/Okonf/",
packages=["okonf", "okonf.connectors", "okonf.facts"],
entry_points={"console_scripts": ["okonf=okonf.__main__:app"]},
install_requires=["asyncssh", "aiohttp", "colorama", "typer"],
extras_require={"lxd": ["pylxd"]},
license="Apache License 2.0",
keywords="configuration management",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
],
)