forked from aravindavk/binnacle-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 698 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 698 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
from setuptools import setup
from binnacle.version import VERSION
setup(
name="binnacle",
version=VERSION,
packages=["binnacle"],
install_requires=['requests', 'termcolor'],
author="Aravinda VK",
author_email="vkaravinda7@gmail.com",
description="Imperative tests/infra automation tool",
license="MIT",
keywords="infra,tests,automation",
url="https://github.com/aravindavk/binnacle-python",
long_description="""
Imperative tests and infra automation tool.
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only"
],
)