-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 781 Bytes
/
setup.py
File metadata and controls
39 lines (33 loc) · 781 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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import os
import re
from setuptools import setup
# workaround for nose/multiprocessing atexit bug.
# see <http://bugs.python.org/issue15881#msg170215>
try:
import multiprocessing
except ImportError:
pass
__doc__="""
Command-line password manager
"""
install_requires = []
try:
import argparse
except:
install_requires.append('argparse')
version = '0.0.1'
setup(name='sdb',
version=version,
description=__doc__,
author='Gavin Wahl',
author_email='gavinwahl@gmail.com',
long_description=__doc__,
packages=['sdb'],
scripts=['sdb/sdb'],
platforms = "any",
license='BSD',
test_suite='nose.collector',
install_requires=install_requires,
setup_requires = ['nose', 'pytest'] + install_requires,
)