clocktower/setup.py

36 lines
903 B
Python
Raw Permalink Normal View History

2021-06-04 10:06:51 +00:00
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='clocktower',
version='0.1',
2021-06-05 17:36:49 +00:00
description='optimal adaptive timing side channel attacks',
2021-06-04 10:06:51 +00:00
long_description=long_description,
long_description_content_type='text/markdown',
url='https://awoo.systems',
author='haskal',
author_email='haskal@awoo.systems',
license='AGPLv3',
packages=['clocktower'],
2021-06-05 06:40:07 +00:00
install_requires=[
"numpy",
"scipy",
# "matplotlib"
],
2021-06-04 10:06:51 +00:00
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: Unix",
"Typing :: Typed"
],
include_package_data=True,
entry_points={
'console_scripts': [
# TODO
]
},
zip_safe=True)