-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.01 KB
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
33
34
35
"""
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.1",
install_requires=[
"pycryptodome",
],
python_requires=">=3.8",
author="Michał Juszczyk",
author_email="michaljuszczyk2@gmail.com",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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",
)