Skip to content

Commit c98fede

Browse files
committed
chore: rename package
1 parent e75a7b4 commit c98fede

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+339
-339
lines changed

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[report]
22
include =
3-
src/imio/*
3+
src/collective/*
44
omit =
55
*/test*
66
*/upgrades/*

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* imio.plausible version:
1+
* collective.plausible version:
22
* Plone Version:
33
* Python version:
44
* Operating System: Linux

LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
imio.plausible Copyright 2024, remdub
1+
collective.plausible Copyright 2024, remdub
22

33
This program is free software; you can redistribute it and/or
44
modify it under the terms of the GNU General Public License version 2

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
graft src/imio
1+
graft src/collective
22
graft docs
33
include *.rst
44
exclude tox.ini

README.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
33
This text does not appear on PyPI or github. It is a comment.
44
5-
.. image:: https://github.com/IMIO/imio.plausible/actions/workflows/plone-package.yml/badge.svg
6-
:target: https://github.com/IMIO/imio.plausible/actions/workflows/plone-package.yml
5+
.. image:: https://github.com/IMIO/collective.plausible/actions/workflows/plone-package.yml/badge.svg
6+
:target: https://github.com/IMIO/collective.plausible/actions/workflows/plone-package.yml
77

8-
.. image:: https://codecov.io/gh/IMIO/imio.plausible/graph/badge.svg?token=28881WG157
9-
:target: https://codecov.io/gh/IMIO/imio.plausible
8+
.. image:: https://codecov.io/gh/IMIO/collective.plausible/graph/badge.svg?token=28881WG157
9+
:target: https://codecov.io/gh/IMIO/collective.plausible
1010

11-
.. image:: https://img.shields.io/pypi/v/imio.plausible.svg
12-
:target: https://pypi.python.org/pypi/imio.plausible/
11+
.. image:: https://img.shields.io/pypi/v/collective.plausible.svg
12+
:target: https://pypi.python.org/pypi/collective.plausible/
1313
:alt: Latest Version
1414

15-
.. image:: https://img.shields.io/pypi/status/imio.plausible.svg
16-
:target: https://pypi.python.org/pypi/imio.plausible
15+
.. image:: https://img.shields.io/pypi/status/collective.plausible.svg
16+
:target: https://pypi.python.org/pypi/collective.plausible
1717
:alt: Egg Status
1818

19-
.. image:: https://img.shields.io/pypi/pyversions/imio.plausible.svg?style=plastic :alt: Supported - Python Versions
19+
.. image:: https://img.shields.io/pypi/pyversions/collective.plausible.svg?style=plastic :alt: Supported - Python Versions
2020

21-
.. image:: https://img.shields.io/pypi/l/imio.plausible.svg
22-
:target: https://pypi.python.org/pypi/imio.plausible/
21+
.. image:: https://img.shields.io/pypi/l/collective.plausible.svg
22+
:target: https://pypi.python.org/pypi/collective.plausible/
2323
:alt: License
2424

2525

2626
==============
27-
imio.plausible
27+
collective.plausible
2828
==============
2929

3030
Plausible integration into Plone 5 and Plone 6 classic UI
@@ -55,14 +55,14 @@ This product has been translated into
5555
Installation
5656
------------
5757

58-
Install imio.plausible by adding it to your buildout::
58+
Install collective.plausible by adding it to your buildout::
5959

6060
[buildout]
6161

6262
...
6363

6464
eggs =
65-
imio.plausible
65+
collective.plausible
6666

6767

6868
and then running ``bin/buildout``
@@ -84,8 +84,8 @@ Contributors
8484
Contribute
8585
----------
8686

87-
- Issue Tracker: https://github.com/IMIO/imio.plausible/issues
88-
- Source Code: https://github.com/IMIO/imio.plausible
87+
- Issue Tracker: https://github.com/IMIO/collective.plausible/issues
88+
- Source Code: https://github.com/IMIO/collective.plausible
8989
- Documentation: https://docs.plone.org/foo/bar
9090

9191

base.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ environment-vars =
3030
eggs =
3131
Plone
3232
Pillow
33-
imio.plausible [test]
33+
collective.plausible [test]
3434

3535
[vscode]
3636
recipe = collective.recipe.vscode
@@ -39,7 +39,7 @@ autocomplete-use-omelette = True
3939

4040
# [code-analysis]
4141
# recipe = plone.recipe.codeanalysis
42-
# directory = ${buildout:directory}/src/imio
42+
# directory = ${buildout:directory}/src/collective
4343
# return-status-codes = False
4444

4545

@@ -53,7 +53,7 @@ recipe = zc.recipe.testrunner
5353
eggs = ${instance:eggs}
5454
initialization =
5555
os.environ['TZ'] = 'UTC'
56-
defaults = ['-s', 'imio.plausible', '--auto-color', '--auto-progress']
56+
defaults = ['-s', 'collective.plausible', '--auto-color', '--auto-progress']
5757

5858

5959
[coverage]
@@ -107,5 +107,5 @@ scripts =
107107
plone-compile-resources
108108

109109
[versions]
110-
# Don't use a released version of imio.plausible
111-
imio.plausible =
110+
# Don't use a released version of collective.plausible
111+
collective.plausible =

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
master_doc = 'index'
4343

4444
# General information about the project.
45-
project = u'imio.plausible'
45+
project = u'collective.plausible'
4646
copyright = u'remdub (remdub)'
4747
author = u'remdub (remdub)'
4848

@@ -199,7 +199,7 @@
199199
#html_search_scorer = 'scorer.js'
200200

201201
# Output file base name for HTML help builder.
202-
htmlhelp_basename = 'imio.plausibledoc'
202+
htmlhelp_basename = 'collective.plausibledoc'
203203

204204
# -- Options for LaTeX output ---------------------------------------------
205205

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
==============
2-
imio.plausible
2+
collective.plausible
33
==============
44

55
User documentation

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
"""Installer for the imio.plausible package."""
2+
"""Installer for the collective.plausible package."""
33

44
from setuptools import find_packages
55
from setuptools import setup
@@ -15,7 +15,7 @@
1515

1616

1717
setup(
18-
name="imio.plausible",
18+
name="collective.plausible",
1919
version="1.0a2.dev0",
2020
description="Plausible integration into Plone 5 and Plone 6 classic UI",
2121
long_description=long_description,
@@ -36,12 +36,12 @@
3636
keywords="Python Plone CMS",
3737
author="remdub",
3838
author_email="[email protected]",
39-
url="https://github.com/IMIO/imio.plausible",
39+
url="https://github.com/IMIO/collective.plausible",
4040
project_urls={
41-
"PyPI": "https://pypi.org/project/imio.plausible/",
42-
"Source": "https://github.com/IMIO/imio.plausible",
43-
"Tracker": "https://github.com/IMIO/imio.plausible/issues",
44-
# 'Documentation': 'https://imio.plausible.readthedocs.io/en/latest/',
41+
"PyPI": "https://pypi.org/project/collective.plausible/",
42+
"Source": "https://github.com/IMIO/collective.plausible",
43+
"Tracker": "https://github.com/IMIO/collective.plausible/issues",
44+
# 'Documentation': 'https://collective.plausible.readthedocs.io/en/latest/',
4545
},
4646
license="GPL version 2",
4747
packages=find_packages("src", exclude=["ez_setup"]),
@@ -72,6 +72,6 @@
7272
[z3c.autoinclude.plugin]
7373
target = plone
7474
[console_scripts]
75-
update_locale = imio.plausible.locales.update:update_locale
75+
update_locale = collective.plausible.locales.update:update_locale
7676
""",
7777
)
File renamed without changes.

0 commit comments

Comments
 (0)