forked from neenogreen/ioc-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 2.09 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
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='6.0.1',
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={
'Documentation': 'https://github.com/fhightower/ioc-finder#ioc-finder',
'Say Thanks!': 'https://saythanks.io/to/floyd.hightower27%40gmail.com',
'Source': 'https://github.com/fhightower/ioc-finder',
'Tracker': 'https://github.com/fhightower/ioc-finder/issues',
'PyPi': 'https://pypi.org/project/ioc-finder/',
'CI': 'https://github.com/fhightower/ioc-finder/actions',
'Changelog': 'https://github.com/fhightower/ioc-finder/blob/main/CHANGELOG.md',
},
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
)