File: setup.py

package info (click to toggle)
golang-github-zmap-zcrypto 0.0~git20240512.0fef58d-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,856 kB
  • sloc: python: 567; sh: 124; makefile: 9
file content (20 lines) | stat: -rw-r--r-- 513 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))

setup(
  name="zcrypto_schemas",
  version="0.0.1",
  description="ZSchema definitions for zcrypto's JSON output.",
  classifiers=[
    "Programming Language :: Python",
    "Natural Language :: English"
  ],
  author="ZMap Team",
  author_email="team@zmap.io",
  url="https://github.com/zmap/zcrypto",
  keywords="zmap censys zcrypto internet-wide scanning",
  packages=find_packages(),
  zip_safe=False
)