2020-08-29 01:16:06 -07:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='respodns',
|
|
|
|
version='0.1.0',
|
|
|
|
packages=[
|
|
|
|
'respodns',
|
|
|
|
],
|
2021-08-11 18:52:46 -07:00
|
|
|
python_requires='>3.9.0',
|
2020-08-29 01:16:06 -07:00
|
|
|
|
|
|
|
author='notwa',
|
|
|
|
author_email='cloningdonor+pypi@gmail.com',
|
|
|
|
url='https://github.com/notwa/respodns',
|
|
|
|
keywords='TODO',
|
|
|
|
description='DNS logger',
|
|
|
|
license='MIT',
|
|
|
|
zip_safe=True,
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: ISC License (ISCL)',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
2020-09-04 18:35:51 -07:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-08-29 01:16:06 -07:00
|
|
|
'Programming Language :: SQL',
|
|
|
|
'Topic :: Internet :: Name Service (DNS)',
|
|
|
|
'Topic :: System :: Logging',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
]
|
|
|
|
)
|