-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
24 lines (23 loc) · 900 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
from setuptools import setup
setup(
name = "robotframework-async",
version = "1.0.4",
description = "Generic Robot Framework library for asynchronous keyword execution",
author = "Fredrik Reveny",
author_email = "chetic@gmail.com",
license = "MIT",
url = "https://github.com/Chetic/robotframework-async",
download_url = "https://github.com/Chetic/robotframework-async",
keywords = ["async", "robotframework"],
install_requires = ["robotframework >= 2.8.6"],
packages = ["AsyncLibrary"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)