-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 995 Bytes
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
from setuptools import setup
setup(
name = "pypipeline-esb",
packages = ["pypipeline"],
version = "1.0.0",
description = "ESB for Python",
author = "Vaibhav Sinha",
author_email = "vaibhavsinh@gmail.com",
url = "https://github.com/vaibhav-sinha/pypipeline",
keywords = ["esb", "eip", "pipeline"],
python_requires='>=3',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
PyPipeline is meant to be a lightweight ESB, configurable via an intutive DSL. PyPipeline implements many of the Enterprise Integration Patterns.
""",
)