- updated README.md and setup.py

This commit is contained in:
Tim Rid 2021-01-03 12:55:26 +01:00
parent 950538b43d
commit 3531a7e4cd
2 changed files with 10 additions and 8 deletions

View file

@ -1,4 +1,9 @@
# construct-typing
![PyPI](https://img.shields.io/pypi/v/construct-typing)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/construct-typing)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/construct-typing)
![GitHub](https://img.shields.io/github/license/timrid/construct-typing)
This project is an extension of the python package [*construct*](https://pypi.org/project/construct/), which is a powerful **declarative** and **symmetrical** parser and builder for binary data. This Repository consists of two packages:
- **construct-stubs**: Adding .pyi for the whole *construct 2.10* package (according to [PEP 561 stub-only packages](https://www.python.org/dev/peps/pep-0561/#stub-only-packages))

View file

@ -13,14 +13,12 @@ setup(
license="MIT",
description="Extension for the python package 'construct' that adds typing features",
long_description=open("README.md").read(),
platforms=["Windows"],
url="http://construct.readthedocs.org",
long_description_content_type="text/markdown",
platforms=["POSIX", "Windows"],
url="https://github.com/timrid/construct-typing",
author="Tim Riddermann",
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=["construct==2.10.56"],
extras_require={
"test": ["pytest>=6.2.0"],
},
keywords=[
"construct",
"kaitai",
@ -54,11 +52,10 @@ setup(
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
],
)