forked from maxrp/cred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 751 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
#!/usr/bin/python
import os
from setuptools import setup, find_packages
def get_desc():
"""Read the long description from the README.md"""
pwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(pwd, 'README.md')) as readme:
return readme.read()
setup(name='cred',
version='0.9.0.5',
description='GnuPG frontend for storing credentials in YAML',
install_requires=[
'argparse>=1.1',
'python-gnupg>=0.2.9',
'PyYAML>=3.10',
],
author='Max R.D. Parmer',
license="GPL",
author_email='[email protected]',
entry_points={
'console_scripts': [
'cred = cred.Main:main',
],
},
packages=find_packages(),
long_description=get_desc(),
)