zgrab2/setup.py

22 lines
538 B
Python
Raw Normal View History

2018-04-25 15:46:26 +00:00
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
2018-05-04 15:15:09 +00:00
name="zgrab2_schemas",
2018-04-25 15:46:26 +00:00
version="0.0.1",
description="ZSchema definitions for zgrab2's JSON output.",
classifiers=[
"Programming Language :: Python",
"Natural Language :: English"
],
author="ZMap Team",
author_email="team@zmap.io",
2018-04-25 15:46:26 +00:00
url="https://github.com/zmap/zgrab2",
keywords="zmap censys zgrab2 internet-wide scanning",
packages=find_packages(),
2018-04-25 15:46:26 +00:00
include_package_data=True,
2018-05-04 15:15:09 +00:00
zip_safe=False
2018-04-25 15:46:26 +00:00
)