-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (25 loc) · 848 Bytes
/
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
from setuptools import setup
setup(
name='pii_crypt',
packages=['pii_crypt'],
version='1.0.6',
license='MIT',
description='Secures Personally Identifiable Information using AES (128/256 bit) key encryption.',
author='Jay Milagroso',
author_email='[email protected]',
url='https://github.com/jmilagroso/pii_crypt',
download_url='https://github.com/jmilagroso/pii_crypt/releases',
keywords=[
'PII',
'AES',
'Security'],
install_requires=['cryptography==44.0.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)