File: setup.py

package info (click to toggle)
python-ajpy 0.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96 kB
  • sloc: python: 230; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 958 bytes parent folder | download
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
from setuptools import setup

setup(
    name = "ajpy",
    packages = ["ajpy"],
    version = "0.0.5",
    description = "AJP package crafting library",
    author = "Julien Legras",
    author_email = "julien.legras@synacktiv.com",
    url = "https://github.com/hypn0s/AJPy/",
    download_url = "https://github.com/hypn0s/AJPy/archive/master.zip",
    license = "BSD",
    keywords = ["ajp", "java", "network"],
    classifiers = [
        "Programming Language :: Python",
        "Development Status :: 3 - Alpha",
        "Environment :: Other Environment",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: POSIX",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Security",
        "Topic :: System :: Networking",
        ],
    long_description = """\
AJPy aims to craft AJP requests in order to communicate with AJP connectors.
"""
)