This repository was archived by the owner on Dec 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.8 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.8 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
current_directory = os.path.abspath(os.path.dirname(__file__))
requirements = ['colored==1.3.3', 'docker==2.5.1']
entry_points={
'console_scripts': [
"dockerlief=dockerlief.main:main",
]
}
information = {}
with open(os.path.join(current_directory, 'dockerlief', '__about__.py'), 'r') as f:
exec(f.read(), information)
package_description = '''
Dockerfiles to build and use LIEF
'''.strip()
setup(
name = information['__title__'],
version = information['__version__'],
license = information['__license__'],
description = package_description,
url = 'http://lief.quarkslab.com',
author = information['__author__'],
author_email = information['__author_email__'],
packages = find_packages(),
package_data = {'': ['*.docker']},
include_package_data = True,
install_requires = requirements,
zip_safe = True,
entry_points = entry_points,
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Windows :: Windows',
'Programming Language :: C++',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Security',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Build Tools',
],
)