forked from zmap/ztag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (50 loc) · 1.31 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='ztag',
version='1.0.0',
description='utility for transforming and annotating JSON scan data with additional metdata',
license="Apache License, Version 2.0",
long_description=open(os.path.join(here, 'README.md')).read(),
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English"
],
author='ZMap Team',
author_email='[email protected]',
url='https://github.com/zmap/ztag',
keywords='zmap censys ztag internet-wide scanning',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires = [
"python-dateutil>=2.6.0",
"zsearch_definitions>=0.1.29,<0.2",
],
extras_require = {
"redis": [
"redis",
],
"gcp": [
"google-cloud-pubsub",
],
"kafka": [
"kafka-python>=1.3.2",
"lz4tools>=1.3.1.2,<1.4",
"xxhash>=1.0.1,<1.1",
],
"schemas": [
"zschema>=0.10.1",
"zgrab2_schemas",
"zcrypto_schemas",
],
},
package_data={"ztag":["devices/*",]},
entry_points = {
'console_scripts': [
'ztag = ztag.__main__:main',
]
}
)