forked from pschelle/python3-keepasshttp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
322a948
commit 26d03b1
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import setuptools | ||
from setuptools import setup, find_packages | ||
|
||
|
||
setuptools.setup( | ||
name='keepasshttp', | ||
version='0.1.0', | ||
packages=setuptools.find_packages(exclude=['tests']), | ||
install_requires=[ | ||
'cryptography', | ||
'pyyaml', | ||
'pyxdg', | ||
'requests' | ||
], | ||
setup_requires=['nose>=1.0'], | ||
tests_require=['mock==2.0.0'] | ||
setup(name='keepasshttp', | ||
version='0.2.0', | ||
description='Python3 port of https://github.com/jobevers/python-keepasshttp', | ||
author='Markus Freitag', | ||
author_email='[email protected]', | ||
packages=find_packages(exclude=['tests']), | ||
install_requires=[ | ||
'cryptography', | ||
'requests' | ||
], | ||
setup_requires=['nose>=1.0'], | ||
tests_require=['mock==2.0.0'] | ||
) |