forked from denibertovic/django-client-certificates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 867 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
import sys
from setuptools import setup
VERSION = '0.1'
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='django-client-certificates',
version=VERSION,
author='Deni Bertovic',
author_email='[email protected]',
description='Django auth using client certificates',
url='github.com/denibertovic/django-client-certificates',
packages=['client_certs'],
license='BSD',
install_requires=['pyOpenSSL>=0.13', 'django>=1.5'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
"Topic :: Software Development :: Libraries :: Python Modules",
],
)