Skip to content

Commit

Permalink
upgraded to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
bschoening committed Dec 31, 2021
1 parent 44b2c10 commit 640cd24
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ performing 70,000 tokenization per second with random 8 character data input.
To run the performance tests:

```bash
python3 ff3_perf.py
python3 -m ff3.ff3_perf
```

## The FF3 Algorithm
Expand Down
24 changes: 24 additions & 0 deletions setup.cfg
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

30 changes: 2 additions & 28 deletions setup.py
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()

0 comments on commit 640cd24

Please sign in to comment.