1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
import os.path
import re
import setuptools
def read(*parts):
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, *parts)) as f:
return f.read()
def find_version(*file_parts):
version_file = read(*file_parts)
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]$", version_file, re.M
)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setuptools.setup(
name="txt2tags",
version=find_version("txt2tags.py"),
description="Convert between markup languages",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="markup",
url="https://txt2tags.org",
author="Aurelio Jargas",
author_email="aurelio@aurelio.net",
maintainer="Jendrik Seipp",
maintainer_email="jendrikseipp@gmail.com",
license="GPL2+",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing :: Markup",
],
py_modules=["txt2tags"],
entry_points={"console_scripts": ["txt2tags=txt2tags:exec_command_line"]},
python_requires=">=3.7",
tests_require=["tox"],
)
|