-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
41 lines (36 loc) · 1.23 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import find_packages, setup
setup(
name='privy',
version='6.0.0',
description='An easy, fast lib to correctly password-protect your data',
long_description=open('README.rst', 'r').read(),
author='Ofek Lev',
author_email='[email protected]',
url='https://github.com/ofek/privy',
license='MIT/Apache-2.0',
keywords=(
'passwords',
'secrets',
'encryption',
'keys',
'aes',
'hmac',
),
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
),
install_requires=['cryptography', 'argon2_cffi'],
tests_require=['pytest'],
packages=find_packages(),
)