| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #!/usr/bin/env python
- try:
- from setuptools import setup
- except ImportError:
- from distutils.core import setup
- from platform import python_version_tuple, python_implementation
- import os
- import re
- # strip links from the descripton on the PyPI
- if python_version_tuple()[0] >= "3":
- LONG_DESCRIPTION = open("README.md", "r", encoding="utf-8").read()
- else:
- LONG_DESCRIPTION = open("README.md", "r").read()
- # strip Build Status from the PyPI package
- try:
- if python_version_tuple()[:2] >= ("2", "7"):
- status_re = "^Build status\n(.*\n){7}"
- LONG_DESCRIPTION = re.sub(status_re, "", LONG_DESCRIPTION, flags=re.M)
- except TypeError:
- if python_implementation() == "IronPython":
- # IronPython doesn't support flags in re.sub (IronPython issue #923)
- pass
- else:
- raise
- install_options = os.environ.get("TABULATE_INSTALL", "").split(",")
- libonly_flags = set(["lib-only", "libonly", "no-cli", "without-cli"])
- if libonly_flags.intersection(install_options):
- console_scripts = []
- else:
- console_scripts = ["tabulate = tabulate:_main"]
- setup(
- name="tabulate",
- version="0.8.9",
- description="Pretty-print tabular data",
- long_description=LONG_DESCRIPTION,
- long_description_content_type="text/markdown",
- author="Sergey Astanin",
- author_email="s.astanin@gmail.com",
- url="https://github.com/astanin/python-tabulate",
- license="MIT",
- classifiers=[
- "Development Status :: 4 - Beta",
- "License :: OSI Approved :: MIT License",
- "Operating System :: OS Independent",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Topic :: Software Development :: Libraries",
- ],
- py_modules=["tabulate"],
- entry_points={"console_scripts": console_scripts},
- extras_require={"widechars": ["wcwidth"]},
- )
|