diff --git a/setup.py b/setup.py index 8da79db..ee8ffe2 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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', )