Postfix's Transport Encryption under Control of the User
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup.py 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. import os
  2. from setuptools import find_packages, setup
  3. with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
  4. README = readme.read()
  5. # allow setup.py to be run from any path
  6. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  7. setup(
  8. name='django-posttls',
  9. version='1.0',
  10. packages=find_packages(),
  11. include_package_data=True,
  12. license='AGPLv3',
  13. description='Postfix' Transport Encryption under Control of the User',
  14. long_description=README.md,
  15. url='https://posttls.com/',
  16. author='Hendrik Suenkler',
  17. author_email='hendrik@posttls.com',
  18. classifiers=[
  19. 'Environment :: Web Environment',
  20. 'Framework :: Django',
  21. 'Framework :: Django :: 1.8',
  22. 'Intended Audience :: Developers',
  23. 'License :: OSI Approved :: AGPLv3',
  24. 'Operating System :: OS Independent',
  25. 'Programming Language :: Python',
  26. 'Topic :: Internet :: WWW/HTTP',
  27. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  28. ],
  29. )