mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
29 lines
753 B
Diff
29 lines
753 B
Diff
--- setup.py.orig 2022-03-19 13:06:29.000000000 -0400
|
|
+++ setup.py 2022-03-19 13:07:06.000000000 -0400
|
|
@@ -16,8 +16,6 @@
|
|
|
|
requires = ['pygments', 'babel']
|
|
|
|
-setup_requires = ['setuptools_scm']
|
|
-
|
|
classifiers = """
|
|
Environment :: Console
|
|
Development Status :: 5 - Production/Stable
|
|
@@ -36,7 +34,7 @@
|
|
|
|
setup(
|
|
name='colout',
|
|
- use_scm_version=True,
|
|
+ version='@@VERSION@@',
|
|
classifiers=classifiers,
|
|
description='Color Up Arbitrary Command Output.',
|
|
entry_points={
|
|
@@ -51,7 +49,6 @@
|
|
package_data={'': ['LICENSE', 'README.md']},
|
|
package_dir={'colout': 'colout'},
|
|
python_requires='>=3.5',
|
|
- setup_requires=setup_requires,
|
|
include_package_data=True,
|
|
install_requires=requires,
|
|
license='GPLv3',
|