Because there is a weird `v0.11` tag, we pick the next version `v0.12.0`,
instead of the "real" next version aka `v0.7.0`
This project is considered to use Semantic Versioning (https://semver.org/)
(https://semver.org/spec/v2.0.0.html as of now)
Python versioning updates:
* Unify that package is offered for >=Python3.5
2.7 support was dropped in dab5555503,
and <3.5 versions do not exist in https://devguide.python.org/#status-of-python-branches as of committing time
* Add some classifiers (YMMV, my first pip package)
* Add some bare-bones `tox` configuration (YMMV, my first tox interaction)
* Add packages required for packaging/deployment in `requirements-build.txt`
* `README.md` is not required to be packaged anymore - it is read at install time
* Fix Content-Type for PyPI
* Update `README.md`:
* Reorder installation options (`pip` > `pipsi` > `ppa`)
* Hard wrap at 100 chars for "meaningful" offences.
* Add myself as maintainer
* Remove escapes that don't make sense in CommonMark
(GFM, as project is hosted in Github)
* Fix typos
* Add a more complete `.gitignore` file
59 lines
1.6 KiB
Python
59 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
if sys.argv[-1] == 'publish':
|
|
os.system('python setup.py bdist_wheel --universal upload')
|
|
sys.exit()
|
|
|
|
packages = ['colout']
|
|
|
|
requires = ['pygments', 'babel']
|
|
|
|
setup_requires = ['setuptools_scm']
|
|
|
|
classifiers = """
|
|
Environment :: Console
|
|
Development Status :: 5 - Production/Stable
|
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
Operating System :: POSIX
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3.5
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Topic :: Utilities
|
|
Topic :: Text Processing
|
|
Topic :: Text Processing :: Filters
|
|
""".strip().split('\n')
|
|
|
|
setup(
|
|
name='colout',
|
|
use_scm_version=True,
|
|
classifiers=classifiers,
|
|
description='Color Up Arbitrary Command Output.',
|
|
entry_points={
|
|
'console_scripts': ['colout=colout.colout:main'],
|
|
},
|
|
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
|
|
long_description_content_type='text/markdown;variant=CommonMark',
|
|
author='nojhan',
|
|
author_email='nojhan@nojhan.net',
|
|
url='http://nojhan.github.com/colout/',
|
|
packages=packages,
|
|
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',
|
|
zip_safe=False,
|
|
)
|