-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (38 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
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
import sys, os
sys.path.append('./tests')
#-----------------------------------------------------------------------------
# Main setup
#-----------------------------------------------------------------------------
version = '0.1'
deps = ['pycrypto']
if sys.version_info < (2,7):
deps.append('argparse')
setup(name='kptool',
version=version,
description = "Keepass v1 DB tool",
long_description = open('README.txt').read(),
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Security',
'Topic :: Utilities'
],
keywords = ['security', 'password'],
author = "WAKAYAMA Shirou",
author_email = "[email protected]",
url='',
license = "GPL v2",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=deps,
entry_points="""
# -*- Entry points: -*-
""",
test_suite = 'tests.test'
)