2025-06-26 00:32:51 -04:00

17 lines
499 B
Python

from setuptools import setup, find_packages
setup(
name='AES-python',
version='0.1.0',
author='Thomas Faour',
author_email='thomas@thumeit.com',
description='My own implementation of AES in python - NOT FOR REAL CRYPTOGRTAPHIC USE.',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
)