-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.51 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.51 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
PIP setup script for the SafeID package.
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
description=\
"""
SafeID is a proof-of-concept web server library that protects user passwords
using the Pythia protocol. Web servers can interact with a Pythia server
to encrypt new passwords and verify existing passwords.
"""
description = ' '.join(description.split())
setup(name='safeid',
version='1.4',
description=description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: System :: Systems Administration :: Authentication/Directory',
],
url='https://github.com/ace0/pyrelic',
author='Adam Everspaugh',
author_email='ace@cs.wisc.edu',
license='MIT',
keywords='password encryption authentication',
packages=['safeid'],
install_requires=['httplib2', 'pythia-pyrelic'],
zip_safe=False,
entry_points={ 'console_scripts': [ 'safeid = safeid.safeid:main' ] },
)