-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='easycrypto',
description='Provides simple wrappers around Python\'s easycrypto implementation.',
long_description='Provides simple wrappers around Python\'s easycrypto implementation.',
long_description_content_type='text/plain',
version='1.1.4',
author='Emarsys Security',
author_email='[email protected]',
license='MIT',
url='https://pypi.org/project/easycrypto/',
download_url='https://github.com/emartech/python-easy-crypto',
packages=[
'easycrypto',
],
zip_safe=True,
install_requires=[
'cryptography>=3.0'
],
extras_require={
'dev': [
'unittest-data-provider==1.0.1'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Topic :: Security :: Cryptography',
],
)