13개의 변경된 파일과 60개의 추가작업 그리고 18개의 파일을 삭제
@ -1,3 +1,6 @@ |
|||
*.pyc |
|||
*.swp |
|||
__pycache__ |
|||
build/ |
|||
dist/ |
|||
misp_modules.egg-info/ |
|||
|
|||
@ -0,0 +1 @@ |
|||
README.md |
|||
@ -0,0 +1,37 @@ |
|||
#!/usr/bin/python |
|||
# -*- coding: utf-8 -*- |
|||
from setuptools import setup |
|||
|
|||
setup( |
|||
name='misp-modules', |
|||
version='1.0', |
|||
author='Alexandre Dulaunoy', |
|||
author_email='alexandre.dulaunoy@circl.lu', |
|||
maintainer='Alexandre Dulaunoy', |
|||
url='https://github.com/MISP/misp-modules', |
|||
description='MISP modules are autonomous modules that can be used for expansion and other services in MISP', |
|||
packages=['modules', 'helpers'], |
|||
scripts=['bin/misp-modules.py'], |
|||
test_suite="tests", |
|||
classifiers=[ |
|||
'License :: OSI Approved :: GNU Affero General Public License v3', |
|||
'Development Status :: 5 - Production/Stable', |
|||
'Environment :: Console', |
|||
'Intended Audience :: Science/Research', |
|||
'Programming Language :: Python :: 3', |
|||
'Topic :: Security', |
|||
], |
|||
install_requires=[ |
|||
'tornado', |
|||
'dnspython3', |
|||
'requests', |
|||
'urlarchiver', |
|||
'passivetotal', |
|||
'PyPDNS', |
|||
'pypssl', |
|||
'redis', |
|||
'pyeupi', |
|||
'ipasn-redis', |
|||
'asnhistory', |
|||
] |
|||
) |
|||
불러오는 중...
Reference in new issue