summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorjvoisin2025-09-03 16:18:52 +0200
committerjvoisin2025-09-04 14:35:36 +0200
commit102f08cd2807e0e664064f118a66b0c974c43c0e (patch)
tree28ef3e2048af11fd0d43971ba4a1681971dfbf16 /setup.py
parent7a8ea224bc327b8ee929379d577c74968ea1c352 (diff)
Switch the project from 0xacab to github
While the folks running 0xacab are much more lovely than the github ones, this project has outgrown the former: - Github offers beefy continuous integration, make it easier to run the testsuite on every python version, instead of using a weird docker-based contraption. Moreover, I'd rather burn some Microsoft money than 0xacab one. - Opening an account on 0xacab is non-trivial (by design), making it tedious for people to report issues and contribute to mat2. - Gitlab is becoming unbearably slow and convoluted, even compared to Github's awful Copilot/AI push. It's a sad state of affairs, but it's a pragmatic decision. People who don't have a Github account can still report issues and send patches by sending me an email.
Diffstat (limited to '')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index d8972fd..7f96ab6 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ setuptools.setup(
11 description="A handy tool to trash your metadata", 11 description="A handy tool to trash your metadata",
12 long_description=long_description, 12 long_description=long_description,
13 long_description_content_type="text/markdown", 13 long_description_content_type="text/markdown",
14 url="https://0xacab.org/jvoisin/mat2", 14 url="https://github.com/jvoisin/mat2",
15 python_requires = '>=3.5.0', 15 python_requires = '>=3.5.0',
16 scripts=['mat2'], 16 scripts=['mat2'],
17 install_requires=[ 17 install_requires=[
@@ -31,6 +31,6 @@ setuptools.setup(
31 "Intended Audience :: End Users/Desktop", 31 "Intended Audience :: End Users/Desktop",
32 ], 32 ],
33 project_urls={ 33 project_urls={
34 'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues', 34 'bugtacker': 'https://github.com/jvoisin/mat2/issues',
35 }, 35 },
36) 36)