forked from pingali/pyAadhaarAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.14 KB
/
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
#!/usr/bin/env python
from distutils.core import setup
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Systems Administration :: Authentication/Directory']
setup(name='pyAadhaarAuth',
version='0.1.0',
description='UIDAI Authentication Python Client',
author='Venkata Pingali',
author_email='[email protected]',
url='http://www.github.com/pingali/pyAadhaarAuth',
packages=['AadhaarAuth', 'AadhaarAuth.lib'],
scripts=['bin/aadhaar-sample-client.py',
'bin/aadhaar-batch-client.py',
'bin/aadhaar-generate-client.py',
'bin/aadhaar-asa-client.py',
'bin/aadhaar-asa-server.py'],
package_data={'AadhaarAuth':['fixtures/*', 'xsd/*']},
license='LICENSE.txt',
long_description=open('README.md').read(),
classifiers=classifiers,
requires=['lxml', 'config', 'M2Crypto', 'requests', 'config',
'pyxmlsec' ]
)