Skip to content

Commit

Permalink
Merge 5de2878 into 602c97f
Browse files Browse the repository at this point in the history
  • Loading branch information
jupe committed Sep 16, 2022
2 parents 602c97f + 5de2878 commit 3d1ff30
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@
Generated by: https://openapi-generator.tech
"""


from setuptools import setup, find_packages # noqa: H301

NAME = "stf-client"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
Expand All @@ -26,19 +23,18 @@
]

setup(
name=NAME,
version=VERSION,
description="Smartphone Test Farm",
author="STF Team",
author_email="contact@openstf.io",
name="stf-client",
use_scm_version=True,
description="Smartphone Test Farm client library",
author="Jussi Vatjus-Anttila",
author_email="jussiva@gmail.com",
url="",
keywords=["OpenAPI", "OpenAPI-Generator", "Smartphone Test Farm"],
python_requires=">=3.6",
keywords=["OpenAPI", "OpenAPI-Generator", "Smartphone Test Farm", "stf", "devicefarm", "openstf"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="Apache-2.0",
long_description="""\
Control and manages real Smartphone devices from browser and restful apis # noqa: E501
"""
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
)

0 comments on commit 3d1ff30

Please sign in to comment.