-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44b2c10
commit 640cd24
Showing
3 changed files
with
27 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[metadata] | ||
name = ff3 | ||
version = 1.0.0 | ||
author = Schoening Consulting, LLC | ||
author_email = bschoeni+llc@gmail.com | ||
description = Format Preserving Encryption (FPE) with FF3 | ||
url = https://github.com/mysto/python-fpe | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: Financial and Insurance Industry | ||
Intended Audience :: Healthcare Industry | ||
Topic :: Security :: Cryptography | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = ff3 | ||
install_requires = pycryptodome | ||
python_requires = >=3.6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,3 @@ | ||
import setuptools | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="ff3", | ||
version="1.0.0", | ||
author="Schoening Consulting, LLC", | ||
author_email="bschoeni+llc@gmail.com", | ||
description="Format Preserving Encryption (FPE) with FF3", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/mysto/python-fpe", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Financial and Insurance Industry", | ||
"Intended Audience :: Healthcare Industry", | ||
"Topic :: Security :: Cryptography", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
packages=find_packages(exclude=["tests", "tests.*"]), | ||
install_requires=["pycryptodome"], | ||
python_requires='>=3.6', | ||
) | ||
setup() |