forked from construct/construct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·60 lines (59 loc) · 1.81 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
#!/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",
author = "Arkadiusz Bulski, Tomer Filiba, Corbin Simpson",
python_requires = ">=3.6",
install_requires = [],
extras_require = {
"extras": [
"enum34",
"numpy",
"arrow",
"ruamel.yaml",
],
},
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)