forked from oz123/python-fernet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='fernet',
version='1.0.1',
description='A simple python fernet implementation',
author='Oz N Tiram',
author_email='oz.tiram@gmail.com',
url='https://github.com/oz123/python-fernet',
py_modules=['fernet'],
install_requires=['pyaes'],
tests_require=['pytest', 'cryptography'],
license='MIT',
platforms='any',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security :: Cryptography',
],
)