forked from runwhen-contrib/rw-cli-codecollection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 810 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="runwhen-cli-keywords",
version=open("VERSION").read(),
packages=["RW"],
package_dir={"RW": "RW"},
license="Apache License 2.0",
description="A set of RunWhen published CLI keywords and python libraries for interacting with APIs using CLIs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Kyle Forster",
author_email="kyle.forster@runwhen.com",
url="https://github.com/runwhen-contrib/rw-cli-codecollection",
install_requires=required,
include_package_data=True,
classifiers=["Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License"],
)