-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
44 lines (41 loc) · 1.94 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
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read().splitlines()
setup(
name="ioc_finder",
version="7.3.0",
description="Python package for finding and parsing indicators of compromise from text.",
entry_points={"console_scripts": ["ioc-finder=ioc_finder.ioc_finder:cli_find_iocs"]},
long_description=readme,
long_description_content_type="text/markdown",
author="Floyd Hightower",
author_email="",
url="https://github.com/fhightower/ioc-finder",
project_urls={
"Changelog": "https://github.com/fhightower/ioc-finder/blob/main/CHANGELOG.md",
"Documentation": "https://hightower.space/ioc-finder/",
"Source": "https://github.com/fhightower/ioc-finder",
"Issues": "https://github.com/fhightower/ioc-finder/issues",
"Sponsor": "https://github.com/sponsors/fhightower",
},
packages=find_packages(exclude=("tests", "docs")),
include_package_data=True,
install_requires=requirements,
license="GNU Lesser General Public License v3",
zip_safe=True,
keywords="iocs,indicators of compromise,parsing,finding,searching,threat intelligence,malware,threat hunting,observables,domains,domain names,asns,cidr,cidr ranges,ips,ip addresses,urls,email addresses,md5,sha1,sha256,google ads,cve,file paths",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
test_suite="tests",
)