This repository was archived by the owner on Nov 13, 2023. 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
47 lines (45 loc) · 1.31 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.31 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='yeti',
version="2.0.0",
description='Your everyday threat intelligence',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Topic :: Threat Intelligence Platform',
],
keywords='yeti threat intelligence platform',
url='https://github.com/yeti-platform/TibetanBrownBear',
author='Yeti core developers',
license='Apache',
packages=['yeti'],
install_requires=[
'python-arango',
'marshmallow',
'flask',
'flask-classful',
'webargs',
'tldextract',
'pytz',
'python-dateutil',
'yara-python',
'url-normalize',
'redis',
'rq',
'stix2',
'taxii2-client',
],
entry_points={
'console_scripts': [
'yeticli=cli.yeticli:cli',
'yetictl=ctl.yetictl:cli'],
},
setup_requires=['pytest-runner'],
test_suite='pytest',
tests_require=['pytest', 'pytest-cov'],
include_package_data=True,
zip_safe=False)