from setuptools import setup with open("README.md", "r") as f: long_description = f.read() setup( name='clocktower', version='0.1', description='optimal adaptive timing side channel attacks', 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'], install_requires=[ "numpy", "scipy", # "matplotlib" ], 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)