- updated README.md and setup.py
This commit is contained in:
parent
950538b43d
commit
3531a7e4cd
2 changed files with 10 additions and 8 deletions
|
|
@ -1,4 +1,9 @@
|
|||
# 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))
|
||||
|
|
|
|||
13
setup.py
13
setup.py
|
|
@ -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",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue