-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 790 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 790 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pass_python_keyring',
version='1.1',
description=u"pass backend for python keyring lib",
long_description=open('README.md').read(),
url='http://github.com/notandy/pass_python_keyring',
author='Andrew Karpow',
author_email='andy@ndyk.de',
license='PSF and MIT',
keywords=['pass', 'password', 'keyring'],
py_modules=['pass'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
],
setup_requires=['setuptools>=0.6c11'],
)