-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (28 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
Wheel packager.
"""
from pathlib import Path
from setuptools import setup
root_directory = Path(__file__).parent
readme = (root_directory / "README.md").read_text()
setup(
name="SecureHardwareExtension",
version="1.0.0",
install_requires=[
"pycryptodome",
],
python_requires=">=3.8",
author="Michał Juszczyk",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
description="A set of tools for AUTOSAR Secure Hardware Extension.",
url="https://github.com/Deejuha/SecureHardwareExtension",
long_description=readme,
long_description_content_type="text/markdown",
)