forked from MostAwesomeDude/construct
-
Notifications
You must be signed in to change notification settings - Fork 155
/
setup.py
executable file
·69 lines (68 loc) · 2.18 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
from setuptools import setup
from construct.version import version_string
setup(
name = "construct",
version = version_string,
packages = [
'construct',
'construct.lib',
],
license = "MIT",
description = "A powerful declarative symmetric parser/builder for binary data",
long_description = open("README.rst").read(),
platforms = ["POSIX", "Windows"],
url = "http://construct.readthedocs.org",
project_urls = {
"Source": "https://github.com/construct/construct",
"Documentation": "https://construct.readthedocs.io/en/latest/",
"Issues": "https://github.com/construct/construct/issues",
},
author = "Arkadiusz Bulski, Tomer Filiba, Corbin Simpson",
author_email = "arek.bulski@gmail.com, tomerfiliba@gmail.com, MostAwesomeDude@gmail.com",
python_requires = ">=3.8",
install_requires = [],
extras_require = {
"extras": [
"numpy",
"arrow",
"ruamel.yaml",
"cloudpickle",
"lz4",
"cryptography",
],
},
keywords = [
"construct",
"kaitai",
"declarative",
"data structure",
"struct",
"binary",
"symmetric",
"parser",
"builder",
"parsing",
"building",
"pack",
"unpack",
"packer",
"unpacker",
],
classifiers = [
"Development Status :: 5 - Production/Stable",
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)