-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (40 loc) · 1.33 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
"""
Robotframework AMQP library
https://github.com/ctradu/robotframework-amqp
"""
from setuptools import setup, find_packages
import os
from codecs import open
# Get the long description from the README file
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(name="robotframework-amqp",
version="0.0.2",
description="AMQP library for usage in robotframework tests",
long_description=long_description,
author="Costin Radu",
license="MIT",
zip_safe=False,
platforms="any",
include_package_data=True,
install_requires=[
"pika",
"robotframework"
],
extras_require={"test": ["tox", "pylint"]},
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Testing",
],
keywords="robotframework testing amqp",
url="https://github.com/ctradu/robotframework-amqp",
)