forked from libkeepass/libkeepass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 783 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
from setuptools import setup
setup(
name="libkeepass",
version="0.1.2",
packages=["libkeepass"],
author="Lukas Koell",
author_email="[email protected]",
description="A library to access KeePass 1.x/KeePassX (v3) and KeePass "
"2.x (v4) files",
license="GPL",
keywords="keepass library",
url="https://github.com/phpwutz/libkeepass", # project home page, if any
test_suite="tests",
install_requires=[
"lxml>=3.2.1",
"nose>=1.3.0",
"pycrypto>=2.6.1",
"colorama>=0.3.2"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
]
)