Skip to content

Commit

Permalink
feat: new repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Dec 2, 2022
1 parent 67e517c commit 9394a22
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -4,4 +4,4 @@ session.shelve*

/dist
/build
/src/repos_api.egg-info
/src/repos-api.egg-info
2 changes: 1 addition & 1 deletion .project
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>repos_api</name>
<name>repos-api</name>
<comment></comment>
<projects>
<project>appier</project>
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -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`). |

Expand All @@ -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/)
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
)

0 comments on commit 9394a22

Please sign in to comment.