You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
868 B

  1. import setuptools
  2. def long_description():
  3. with open('README.md', 'r') as file:
  4. return file.read()
  5. setuptools.setup(
  6. name='dnsrewriteproxy',
  7. version='0.0.16',
  8. author='Department for International Trade',
  9. author_email='webops@digital.trade.gov.uk',
  10. description='A DNS proxy server that conditionally rewrites and filters A record requests',
  11. long_description=long_description(),
  12. long_description_content_type='text/markdown',
  13. url='https://github.com/uktrade/dns-rewrite-proxy',
  14. classifiers=[
  15. 'Programming Language :: Python :: 3',
  16. 'License :: OSI Approved :: MIT License',
  17. 'Topic :: Internet :: Name Service (DNS)',
  18. ],
  19. python_requires='>=3.7.0',
  20. py_modules=[
  21. 'dnsrewriteproxy',
  22. ],
  23. install_requires=[
  24. 'aiodnsresolver>=0.0.149',
  25. ],
  26. test_suite='test',
  27. )