-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 852 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
from setuptools import setup, find_packages
setup(
name='MergeKeepass',
version='0.1',
packages=find_packages(),
include_package_data=True,
py_modules = [ 'merge_keepass' 'keepassmerge' ],
install_requires=['pykeepass >= 4.0.1', 'Click'],
entry_points='''
[console_scripts]
merge_keepass=MergeKeepass.cli:cli
''',
# metadata to display on PyPI
author='Scott Hamilton',
author_email='[email protected]',
description='Keepass Databases 2.x Merging module and command line utility',
keywords='keepass merge',
url='https://github.com/SCOTT-HAMILTON/merge-keepass',
project_urls={
'Source Code': 'https://github.com/SCOTT-HAMILTON/merge-keepass',
},
classifiers=[
'License :: OSI Approved :: Python Software Foundation License'
]
)