-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 731 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
setup(
name='keepassxc-browser',
version='0.1.8',
packages=find_packages(),
install_requires=['pysodium', 'pywin32; platform_system == "Windows"'],
description='Access the KeepassXC Browser API from python',
url='https://github.com/hrehfeld/python-keepassxc-browser',
author='Hauke Rehfeld',
author_email='pypi.org@haukerehfeld.de',
license='AGPL-3.0',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
],
)