-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 1.27 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
33
34
35
36
#!/usr/bin/env python
from setuptools import setup
setup(name='passdb',
packages=['passdb'],
version='0.2-1',
description='PassDB (Password DB) for shared password management using GPG',
author='Raghu Udiyar',
author_email='[email protected]',
url='https://github.com/raags/passdb',
download_url='https://github.com/raags/passdb/tarball/0.2',
install_requires=['python-gnupg', 'argparse', 'pyyaml'],
license="Apache 2.0",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
],
entry_points={
'console_scripts': [
'passdb=passdb.passdb:main',
'manage-passdb=passdb.manage_passdb:main'
],
},
)