-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.03 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.03 KB
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
import sys
from setuptools import setup
install_requires = ["keepasshttp"]
if sys.version_info[0:2] < (3, 0):
dependency_links = ["git+https://github.com/romankh/python-keepasshttp#egg=keepasshttp-0.1.0"]
else:
dependency_links = ["git+https://github.com/MarkusFreitag/python3-keepasshttp#egg=keepasshttp-0.2.0"]
setup(
name='git-credential-keepasshttp',
version='1.0',
description='A git credential helper to integrate with keepass using keepasshttp',
url='https://github.com/z00nx/git-credential-keepasshttp',
author='z00nx 0',
license='???',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3.5',
],
keywords='git credential keepass keepasshttp',
scripts=['bin/git-credential-keepasshttp'],
dependency_links=dependency_links,
install_requires=install_requires,
)