2
0
Fork 0

Updated the metadata.

This commit is contained in:
Thomas Touhey 2018-07-27 02:01:26 +02:00
parent 902a23e23e
commit 9a4131b074
No known key found for this signature in database
GPG Key ID: 2ECEB0517AD947FB
3 changed files with 38 additions and 27 deletions

View File

@ -31,4 +31,4 @@ What is left to do
.. _Planète Casio's forge:: https://gitea.planet-casio.com/
.. _Thomas' forge_:: https://forge.touhey.fr/pc/textout.git
.. _the official website:: https://textout.touhey.fr/docs/
.. _the official website:: https://textout.touhey.fr/

View File

@ -1,2 +1,36 @@
[metadata]
name = textoutpc
version = attr: textoutpc.version
url = https://textout.touhey.fr/
author = Thomas Touhey
author_email = thomas@touhey.fr
description = textout() equivalent from Planète Casio
long_description = file: README.rst
keywords = planète casio, textout, bbcode, translator, parser
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Natural Language :: French
Operating System :: OS Independent
Programming Language :: Python :: 3
Intended Audience :: Developers
Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Topic :: Text Processing :: Markup :: HTML
[options]
zip_safe = False
include_package_data = True
packages = find:
test_suite = test
scripts =
scripts/textout2html
scripts/textout2lightscript
install_requires =
regex
[options.package_data]
* = *.txt, *.rst
[wheel]
universal = True

View File

@ -5,33 +5,10 @@
#******************************************************************************
""" Setup script for the textoutpc Python package and script. """
from setuptools import setup, find_packages
from setuptools import setup
setup(name='textoutpc',
version='0.1',
description='Textout() equivalent from Planète Casio',
author='Thomas "Cakeisalie5" Touhey',
author_email='thomas@touhey.fr',
url='https://forge.touhey.fr/pc/textout.git/',
license='MIT',
keywords='planète casio textout bbcode translator parser',
# Actually, most of the project's data is read from the `setup.cfg` file.
packages=find_packages(),
scripts=['textout2html', 'textout2lightscript'],
test_suite="test",
install_requires=['regex'],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Natural Language :: French',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Text Processing :: Markup :: HTML'
]
)
setup()
# End of file.