Skip to content

Commit

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

/dist
/build
/src/colony_print.egg-info
/src/colony-print.egg-info
4 changes: 2 additions & 2 deletions .project
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>colony_print</name>
<name>colony-print</name>
<comment></comment>
<projects>
<project>appier</project>
<project>appier_extras</project>
<project>appier-extras</project>
</projects>
<buildSpec>
<buildCommand>
Expand Down
5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -5,14 +5,13 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"
matrix:
include:
- python: 3.7
dist: xenial
- python: 3.8
dist: xenial
- python: 3.9
dist: xenial
- python: pypy
dist: xenial
- python: pypy3
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,20 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

*

### Changed

* Repo name to `colony-print`

### Fixed

*
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -4,7 +4,7 @@ Small web app for printing of Colony based documents.

This project includes two main components:

* The web app end point that allows for XML to Binie converstion `colony_print.controllers`
* The web app end point that allows for XML to Binie conversion `colony_print.controllers`
* The structure conversion infra-structure (visitors, ast, etc.) `colony_print.printing`

## Installation
Expand Down Expand Up @@ -56,7 +56,7 @@ Colony Print Infra-structure is currently licensed under the [Apache License, Ve

## Build Automation

[![Build Status](https://app.travis-ci.com/hivesolutions/colony_print.svg?branch=master)](https://travis-ci.com/github/hivesolutions/colony_print)
[![Coverage Status](https://coveralls.io/repos/hivesolutions/colony_print/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/colony_print?branch=master)
[![PyPi Status](https://img.shields.io/pypi/v/colony_print.svg)](https://pypi.python.org/pypi/colony_print)
[![Build Status](https://app.travis-ci.com/hivesolutions/colony-print.svg?branch=master)](https://travis-ci.com/github/hivesolutions/colony-print)
[![Coverage Status](https://coveralls.io/repos/hivesolutions/colony-print/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/colony-print?branch=master)
[![PyPi Status](https://img.shields.io/pypi/v/colony-print.svg)](https://pypi.python.org/pypi/colony-print)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/)
2 changes: 1 addition & 1 deletion requirements.py2.txt
@@ -1,5 +1,5 @@
appier
appier_extras
appier-extras
jinja2
reportlab
pillow<7
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,5 +1,5 @@
appier
appier_extras
appier-extras
jinja2
reportlab
pillow
8 changes: 5 additions & 3 deletions setup.py
Expand Up @@ -5,14 +5,14 @@
import setuptools

setuptools.setup(
name = "colony_print",
name = "colony-print",
version = "0.1.4",
author = "Hive Solutions Lda.",
author_email = "development@hive.pt",
description = "Colony Print Infra-structure",
license = "Apache License, Version 2.0",
keywords = "colony print native",
url = "http://colony_print.hive.pt",
url = "http://colony-print.hive.pt",
zip_safe = False,
packages = [
"colony_print",
Expand Down Expand Up @@ -57,5 +57,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"
)
2 changes: 1 addition & 1 deletion src/colony_print/main.py
Expand Up @@ -9,7 +9,7 @@ class ColonyPrintApp(appier.APIApp):
def __init__(self, *args, **kwargs):
appier.APIApp.__init__(
self,
name = "colony_print",
name = "colony-print",
parts = (
appier_extras.AdminPart,
),
Expand Down

0 comments on commit 5ffeb93

Please sign in to comment.