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