17 lines
499 B
Python
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',
|
|
) |