summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-09-06 11:42:07 +0200
committerjvoisin2018-09-06 11:42:07 +0200
commit759efa03eee95e670e0da78f8119a2870c13a6bc (patch)
tree25f9ef7c8949c635dfe40c9a3d635801d8a4a79d
parent9fe6f1023b05d55e125e4289a25400985cb5f450 (diff)
Fix a setuptool-related warning
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9773e49..246c4df 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ setuptools.setup(
20 'pycairo', 20 'pycairo',
21 ], 21 ],
22 packages=setuptools.find_packages(exclude=('tests', )), 22 packages=setuptools.find_packages(exclude=('tests', )),
23 classifiers=( 23 classifiers=[
24 "Development Status :: 3 - Alpha", 24 "Development Status :: 3 - Alpha",
25 "Environment :: Console", 25 "Environment :: Console",
26 "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", 26 "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
@@ -28,7 +28,7 @@ setuptools.setup(
28 "Programming Language :: Python :: 3 :: Only", 28 "Programming Language :: Python :: 3 :: Only",
29 "Topic :: Security", 29 "Topic :: Security",
30 "Intended Audience :: End Users/Desktop", 30 "Intended Audience :: End Users/Desktop",
31 ), 31 ],
32 project_urls={ 32 project_urls={
33 'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues', 33 'bugtacker': 'https://0xacab.org/jvoisin/mat2/issues',
34 }, 34 },