Skip to content

Commit

Permalink
Improve setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusFreitag committed Sep 3, 2017
1 parent 322a948 commit 26d03b1
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions setup.py
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']
)

0 comments on commit 26d03b1

Please sign in to comment.