-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (43 loc) · 1.17 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
setup(
name='CatWeazle',
version='0.0.20',
description='CatWeazle, dynamic DNS and Redhat IdM/FreeIPA registration system',
long_description="""
dynamically create and delete DNS records for volatile linux systems, as well as redhat IDM de/registration.
Copyright (c) 2019, Stephan Schultchen.
License: MIT (see LICENSE for details)
""",
packages=find_packages(),
scripts=[
'contrib/catweazle',
'contrib/catweazle_register',
],
url='https://github.com/schlitzered/CatWeazle',
license='MIT',
author='schlitzer',
author_email='[email protected]',
include_package_data=True,
test_suite='test',
platforms='posix',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=[
"aioboto3",
"aiohttp",
"aiotask-context",
"aiohttp-remotes",
"ipaddress",
"jsonschema",
"motor",
"pyyaml",
"passlib",
"requests",
"aioredis",
],
keywords=[
'freeipa', 'redhat idm', 'dns'
]
)