This repository was archived by the owner on Jun 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.39 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.39 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
"""Packaging tool for the Yeti python bindings and CLI utility."""
from setuptools import setup
from setuptools import find_packages
"""Packaging tool for the Yeti python bindings and CLI utility."""
from setuptools import setup
from setuptools import find_packages
"""Returns contents of README.md."""
with open("README.md", "r", encoding="utf-8") as readme_fp:
long_description = readme_fp.read()
setup(name='pyeti-python3',
version="1.0",
description='Revival version of pyeti, the API for Yeti Threat Intel Platform.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
],
keywords='yeti threat intel api',
url='https://github.com/yeti-platform/pyeti',
author='Yeti core developers | packaged by Thomas Roccia @fr0gger_',
license='Apache',
packages=find_packages(),
install_requires=[
'requests',
'tqdm',
],
test_suite='nose.collector',
tests_require=[
'nose',
'nose-cover3'
],
entry_points={
'console_scripts': ['yeticli=pyeti.scripts.cli:main'],
},
include_package_data=True,
python_requires='>=3.6',
zip_safe=False)