-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.66 KB
/
setup.py
File metadata and controls
55 lines (51 loc) · 1.66 KB
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
#
# Copyright (C) 2020 GrammaTech, Inc.
#
# This code is licensed under the MIT license. See the LICENSE file in
# the project root for license terms.
#
# This project is sponsored by the Office of Naval Research, One Liberty
# Center, 875 N. Randolph Street, Arlington, VA 22203 under contract #
# N68335-17-C-0700. The content of the information does not necessarily
# reflect the position or policy of the Government and no official
# endorsement should be inferred.
#
import imp
import setuptools
__version__ = imp.load_source(
"pkginfo.version", "gtirb_capstone/version.py"
).__version__
if __name__ == "__main__":
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gtirb-capstone",
version=__version__,
author="Grammatech",
author_email="gtirb@grammatech.com",
description="Utilities for rewriting GTIRB with capstone and keystone",
packages=setuptools.find_packages(),
install_requires=[
"capstone-gt",
"dataclasses ; python_version<'3.7.0'",
"gtirb",
"keystone-engine",
],
classifiers=["Programming Language :: Python :: 3"],
extras_require={
"test": [
"flake8",
"isort",
"pytest",
"pytest-cov",
"tox",
"tox-wheel",
"pre-commit",
"mcasm ~= 0.1.0",
]
},
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/grammatech/gtirb-functions",
license="MIT",
)