-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (26 loc) · 937 Bytes
/
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
from setuptools import setup
setup(
name = "ajpy",
packages = ["ajpy"],
version = "0.0.4",
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",
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.
"""
)