-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
48 lines (46 loc) · 1.37 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
from setuptools import setup, find_packages
long_descr = """ccrawl uses clang to parse C files and collect a database of
filtered Structures/Unions, Enums, Macros and Functions prototypes."""
setup(
name="ccrawl",
version="1.10",
description="C source code crawler that creates a database of C-structures, prototypes and macros",
long_description=long_descr,
# Metadata
author="Axel Tillequin",
author_email="[email protected]",
license="GPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
],
keywords="Clang C C++ data-structures database",
packages=find_packages(exclude=["doc", "tests*"]),
url="https://github.com/bdcht/ccrawl",
setup_requires=[
"pytest-runner",
],
tests_require=[
"pytest",
],
install_requires=[
"libclang==14.0.1",
"click",
"traitlets",
"pyparsing",
"tinydb",
"python-rapidjson",
"requests",
"pymongo",
"grandalf",
],
package_data={},
data_files=[],
entry_points={
"console_scripts": ["ccrawl=ccrawl.main:cli"],
},
)