-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
76 lines (74 loc) · 2.05 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
70
71
72
73
74
75
76
#!/usr/bin/env python
from setuptools import setup
exec(open("./construct_editor/version.py").read())
setup(
name="construct-editor",
version=version_string, # type: ignore
packages=[
"construct_editor",
"construct_editor.core",
"construct_editor.gallery",
"construct_editor.wx_widgets",
],
package_data={
"construct_editor": ["py.typed"],
},
entry_points={
"gui_scripts": [
"construct-editor=construct_editor.main:main"
]
},
include_package_data=True,
license="MIT",
description="GUI (based on wxPython) for 'construct', which is a powerful declarative and symmetrical parser and builder for binary data.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
platforms=["Windows"],
url="https://github.com/timrid/construct-editor",
author="Tim Riddermann",
python_requires=">=3.8",
install_requires=[
"construct==2.10.68",
"construct-typing==0.6.*",
"wxPython>=4.1.1",
"arrow>=1.0.0",
"wrapt>=1.14.0",
"typing-extensions>=4.4.0"
],
keywords=[
"gui",
"wx",
"wxpython",
"widget",
"binary",
"editor" "construct",
"kaitai",
"declarative",
"data structure",
"struct",
"binary",
"symmetric",
"parser",
"builder",
"parsing",
"building",
"pack",
"unpack",
"packer",
"unpacker",
"bitstring",
"bytestring",
"bitstruct",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"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 :: Implementation :: CPython",
"Typing :: Typed",
],
)