mirror of https://github.com/MISP/misp-modules
				
				
				
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
| #!/usr/bin/env python3
 | |
| # -*- coding: utf-8 -*-
 | |
| from setuptools import setup, find_packages
 | |
| 
 | |
| 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=find_packages(),
 | |
|     entry_points={'console_scripts': ['misp-modules = misp_modules:main']},
 | |
|     scripts=['tools/update_misp_modules.sh'],
 | |
|     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',
 | |
|         'psutil',
 | |
|         'redis>=3',
 | |
|         'pyparsing==2.4.7'
 | |
|     ],
 | |
| )
 |