From 9394a2266d08d0ccc13b2fdd71a371307e3b64be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Fri, 2 Dec 2022 18:24:03 +0000 Subject: [PATCH] feat: new repository name --- .gitignore | 2 +- .project | 2 +- CHANGELOG.md | 1 + README.md | 12 ++++++------ setup.py | 6 ++++-- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 71a0e6b..75d8d55 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ session.shelve* /dist /build -/src/repos_api.egg-info +/src/repos-api.egg-info diff --git a/.project b/.project index 5be2ef6..0083d60 100644 --- a/.project +++ b/.project @@ -1,6 +1,6 @@ - repos_api + repos-api appier diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cf0a82..dd9357b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added * `tags` field support in `publish_package` +* Changed repository into `repos-api` ### Changed diff --git a/README.md b/README.md index 9579f48..71ecdee 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ Simple [Repos](http://repos.hive.pt) Python API client. ## Configuration -| Name | Type | Description | -| ----- | ----- | ----- | -| **REPOS_BASE_URL** | `str` | The base URL to be used in the API requests (defaults to `https://repos.bemisc.com/`). | +| Name | Type | Description | +| ------------------ | ----- | ------------------------------------------------------------------------------------------- | +| **REPOS_BASE_URL** | `str` | The base URL to be used in the API requests (defaults to `https://repos.bemisc.com/`). | | **REPOS_USERNAME** | `str` | If set allows usage of an HTTP Auth username to authenticate requests (defaults to `None`). | | **REPOS_PASSWORD** | `str` | If set allows usage of an HTTP Auth password to authenticate requests (defaults to `None`). | @@ -16,7 +16,7 @@ Repos API is currently licensed under the [Apache License, Version 2.0](http://w ## Build Automation -[![Build Status](https://app.travis-ci.com/hivesolutions/repos_api.svg?branch=master)](https://travis-ci.com/github/hivesolutions/repos_api) -[![Coverage Status](https://coveralls.io/repos/hivesolutions/repos_api/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/repos_api?branch=master) -[![PyPi Status](https://img.shields.io/pypi/v/repos_api.svg)](https://pypi.python.org/pypi/repos_api) +[![Build Status](https://app.travis-ci.com/hivesolutions/repos-api.svg?branch=master)](https://travis-ci.com/github/hivesolutions/repos-api) +[![Coverage Status](https://coveralls.io/repos/hivesolutions/repos-api/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/repos-api?branch=master) +[![PyPi Status](https://img.shields.io/pypi/v/repos-api.svg)](https://pypi.python.org/pypi/repos-api) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/) diff --git a/setup.py b/setup.py index e01ca8c..4f4cf6f 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ import setuptools setuptools.setup( - name = "repos_api", + name = "repos-api", version = "0.1.7", author = "Hive Solutions Lda.", author_email = "development@hive.pt", @@ -75,5 +75,7 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" - ] + ], + long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(), + long_description_content_type = "text/markdown" )