-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (39 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='hpfeeds3',
version='0.9.9.dev0',
description='Python implementation of the honeypot feeds broker',
author='John Carr',
author_email='[email protected]',
url='https://github.com/Jc2k/hpfeeds',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
entry_points='''
[console_scripts]
hpfeeds = hpfeeds.scripts.cli:main
hpfeeds-broker = hpfeeds.scripts.broker:main
''',
project_urls={
'Documentation': 'https://hpfeeds3.readthedocs.org/',
'Code': 'https://github.com/Jc2k/hpfeeds3',
'Issue tracker': 'https://github.com/Jc2k/hpfeeds3/issues',
},
extras_require = {
'test': [
'flake8',
'flake8-isort',
'pytest',
'pytest-cov',
'codecov',
],
'broker': [
'aiorun',
'aiohttp',
'prometheus_client',
'wrapt',
],
},
)