2020-12-10 20:26:37 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
2021-05-23 16:22:40 +02:00
|
|
|
version_string = "?.?.?"
|
2021-03-24 20:28:39 +01:00
|
|
|
exec(open("./construct_typed/version.py").read())
|
|
|
|
|
|
2020-12-10 20:26:37 +01:00
|
|
|
setup(
|
|
|
|
|
name="construct-typing",
|
2021-03-24 20:28:39 +01:00
|
|
|
version=version_string,
|
2020-12-10 20:26:37 +01:00
|
|
|
packages=["construct-stubs", "construct_typed"],
|
|
|
|
|
package_data={
|
|
|
|
|
"construct-stubs": ["*.pyi", "lib/*.pyi"],
|
2020-12-31 17:11:21 +01:00
|
|
|
"construct_typed": ["py.typed"],
|
2020-12-10 20:26:37 +01:00
|
|
|
},
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
license="MIT",
|
|
|
|
|
description="Extension for the python package 'construct' that adds typing features",
|
|
|
|
|
long_description=open("README.md").read(),
|
2021-01-03 12:55:26 +01:00
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
|
platforms=["POSIX", "Windows"],
|
|
|
|
|
url="https://github.com/timrid/construct-typing",
|
2020-12-10 20:26:37 +01:00
|
|
|
author="Tim Riddermann",
|
2021-01-03 12:55:26 +01:00
|
|
|
python_requires=">=3.7",
|
2021-04-03 21:35:57 +02:00
|
|
|
install_requires=["construct==2.10.66"],
|
2020-12-10 20:26:37 +01:00
|
|
|
keywords=[
|
|
|
|
|
"construct",
|
|
|
|
|
"kaitai",
|
|
|
|
|
"declarative",
|
|
|
|
|
"data structure",
|
|
|
|
|
"struct",
|
|
|
|
|
"binary",
|
|
|
|
|
"symmetric",
|
|
|
|
|
"parser",
|
|
|
|
|
"builder",
|
|
|
|
|
"parsing",
|
|
|
|
|
"building",
|
|
|
|
|
"pack",
|
|
|
|
|
"unpack",
|
|
|
|
|
"packer",
|
|
|
|
|
"unpacker",
|
|
|
|
|
"bitstring",
|
|
|
|
|
"bytestring",
|
|
|
|
|
"annotation",
|
|
|
|
|
"type hint",
|
|
|
|
|
"typing",
|
|
|
|
|
"typed",
|
|
|
|
|
"bitstruct",
|
2021-01-01 22:56:53 +01:00
|
|
|
"PEP 561",
|
2020-12-10 20:26:37 +01:00
|
|
|
],
|
|
|
|
|
classifiers=[
|
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
|
"Topic :: Software Development :: Code Generators",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-01-03 12:55:26 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2020-12-10 20:26:37 +01:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
2021-01-01 22:56:53 +01:00
|
|
|
"Typing :: Typed",
|
2020-12-10 20:26:37 +01:00
|
|
|
],
|
|
|
|
|
)
|