Skip to content

Commit

Permalink
Merge pull request #4 from Deejuha/2-pypi-has-no-readme
Browse files Browse the repository at this point in the history
2 pypi has no readme
  • Loading branch information
Deejuha authored Aug 23, 2022
2 parents 09cf911 + f231384 commit b17b3e5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
"TWINE_USERNAME": "__token__"
"TWINE_PASSWORD": ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
twine upload dist/*
python -m build --wheel
twine upload --repository pypi dist/*
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Secure Hardware Extension

![CICD](https://github.com/Deejuha/SecureHardwareExtension/workflows/python-test/badge.svg?branch=master)
![Python](https://img.shields.io/pypi/pyversions/Django?style=plastic)

A set of tools for AUTOSAR Secure Hardware Extension.

Expand All @@ -14,7 +15,7 @@ Available features:
With using Python 3.8, 3.9 or 3.10 install package to your environment.

```bash
pip install secure_hardware_extension
pip install SecureHardwareExtension
```

## Examples
Expand Down
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,31 @@
Wheel packager.
"""
from pathlib import Path

from setuptools import setup

root_directory = Path(__file__).parent
readme = (root_directory / "README.md").read_text()

setup(
name="secure_hardware_extension",
name="SecureHardwareExtension",
version="0.2.0",
install_requires=[
"pycryptodome",
],
python_requires=">=3.8",
author="Michał Juszczyk",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3",
"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",
)

0 comments on commit b17b3e5

Please sign in to comment.