forked from construct/construct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (49 loc) · 1.79 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
HERE = os.path.dirname(__file__)
exec(open(os.path.join(HERE, "construct", "version.py")).read())
setup(
name = "construct",
version = version_string, #@UndefinedVariable
packages = [
'construct',
'construct.lib',
'construct.formats',
'construct.formats.data',
'construct.formats.executable',
'construct.formats.filesystem',
'construct.formats.graphics',
'construct.protocols',
'construct.protocols.application',
'construct.protocols.layer2',
'construct.protocols.layer3',
'construct.protocols.layer4',
],
license = "MIT",
description = "A powerful declarative parser/builder for binary data",
long_description = open(os.path.join(HERE, "README.rst")).read(),
platforms = ["POSIX", "Windows"],
url = "http://construct.readthedocs.org",
author = "Tomer Filiba, Corbin Simpson",
author_email = "[email protected], [email protected]",
install_requires = ["six"],
requires = ["six"],
provides = ["construct"],
keywords = "construct, declarative, data structure, binary, parser, builder, pack, unpack",
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
],
)