-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (58 loc) · 1.54 KB
/
Copy pathsetup.py
File metadata and controls
67 lines (58 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
66
67
from unittest import TestLoader
import setuptools
from setuptools import setup
def snake_test_suite():
test_loader = TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite
setup(
name="snake",
version="1.0.2",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=[
'celery==4.3.0',
'celery[redis]==4.3.0',
'marshmallow==3.0.0b7',
'motor==2.0.0',
'redis==3.2.1',
'python-magic==0.4.15',
'pyyaml==5.4',
'requests==2.18.4',
'tornado==5.0.1',
'vine==1.3.0',
'webargs==2.0.0'
],
extras_require={
'ssdeep': ['pydeep']
},
dependency_links=[
"git+https://github.com/kbandla/pydeep#egg=pydeep"
],
entry_points={
'console_scripts': [
'snaked = snake.snaked:__main__',
'snake = snake.snake_utility:main'
]
},
include_package_data=True,
zip_safe=False,
setup_requires=[
'flake8',
'pylint',
'pytest-runner',
'setuptools-lint'
],
tests_require=[
'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-mock'
],
test_suite="setup.snake_test_suite",
author="Alex Kornitzer",
author_email="alex.kornitzer@countercept.com",
description="The binary store!",
license="https://github.com/countercept/snake-core/blob/master/LICENSE",
keywords="snake binary malware",
url="https://github.com/countercept/snake-core",
)