Connor Olding
52f315b395
3.7 was my previous target, but 3.8 has been out for a while. plus, i'm not planning on releasing this for a while, so i can do what i want.
32 lines
860 B
Python
32 lines
860 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='respodns',
|
|
version='0.1.0',
|
|
packages=[
|
|
'respodns',
|
|
],
|
|
python_requires='>3.8.0',
|
|
|
|
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',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: SQL',
|
|
'Topic :: Internet :: Name Service (DNS)',
|
|
'Topic :: System :: Logging',
|
|
'Topic :: Utilities',
|
|
]
|
|
)
|