-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
48 lines (42 loc) · 1.55 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
import os
import re
from setuptools import setup # pyre-ignore
with open("README.md", "r") as fh:
long_description = fh.read()
def version():
version_pattern = r"__version__\W*=\W*'([^']+)'"
src = os.path.join(os.path.dirname(__file__), 'stoq/__init__.py')
with open(src, 'r') as f:
(v,) = re.findall(version_pattern, f.read())
return v
setup(
name='stoq-framework',
version=version(),
author='Marcus LaFerrera',
author_email='[email protected]',
description='A framework for simplifying analysis.',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url='https://github.com/PUNCH-Cyber/stoq',
include_package_data=True,
packages=['stoq'],
install_requires=open('requirements.txt').read().split(),
tests_require=['asynctest==0.13.0'],
keywords='malware-analysis, malware-analyzer, malware-detection, framework, automation',
python_requires='>=3.6',
test_suite='stoq.tests',
entry_points={'console_scripts': ['stoq=stoq.cli:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)