-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
57 lines (52 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'Click',
]
test_requirements = []
setup(
name='ioc_fanger',
version='4.2.1',
description="Python package to defang and fang indicators of compromise from text.",
long_description=readme,
long_description_content_type="text/markdown",
author="Floyd Hightower",
author_email='',
url='https://github.com/ioc-fang/ioc_fanger',
packages=find_packages(exclude=('tests', 'docs')),
entry_points={
'console_scripts': [
'fang=ioc_fanger.ioc_fanger:cli_fang',
'defang=ioc_fanger.ioc_fanger:cli_defang'
]
},
install_requires=requirements,
license='MIT',
zip_safe=True,
project_urls={
'Documentation': 'https://github.com/ioc-fang/ioc-fanger',
'Say Thanks!': 'https://saythanks.io/to/floyd.hightower27%40gmail.com',
'Source': 'https://github.com/ioc-fang/ioc-fanger',
'Tracker': 'https://github.com/ioc-fang/ioc-fanger/issues',
'PyPi': 'https://pypi.org/project/ioc-fanger/',
'CI': 'https://travis-ci.com/ioc-fang/ioc-fanger.svg?branch=main',
'Changelog': 'https://github.com/ioc-fang/ioc-fanger/blob/main/CHANGELOG.md',
},
keywords='iocs,indicators of compromise,threat intelligence,malware,threat hunting,observables,fanging,defanging,fang,defang,refang',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'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',
tests_require=test_requirements
)