2023-10-28 17:48:37 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
[metadata]
|
|
|
|
name = WuttJamaican
|
|
|
|
version = attr: wuttjamaican.__version__
|
|
|
|
author = Lance Edgar
|
|
|
|
author_email = lance@edbob.org
|
|
|
|
url = https://rattailproject.org/
|
|
|
|
license = GNU GPL v3
|
|
|
|
description = Base package for Wutta Framework
|
2023-11-24 16:55:37 -06:00
|
|
|
long_description = file: README.rst
|
2023-10-28 17:48:37 -05:00
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
|
|
Natural Language :: English
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
[options]
|
|
|
|
packages = find:
|
|
|
|
package_dir =
|
|
|
|
=src
|
|
|
|
include_package_data = True
|
|
|
|
python_requires = >=3.6
|
|
|
|
install_requires =
|
|
|
|
python-configuration
|
|
|
|
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
where = src
|
|
|
|
|
|
|
|
|
|
|
|
[options.extras_require]
|
2023-10-29 10:26:02 -05:00
|
|
|
db = SQLAlchemy<2
|
2023-11-22 11:13:39 -06:00
|
|
|
docs = Sphinx; sphinxcontrib-programoutput
|
2023-10-29 10:26:02 -05:00
|
|
|
tests = pytest-cov; tox
|
2023-11-19 14:22:25 -06:00
|
|
|
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
|
|
|
|
console_scripts =
|
2023-11-22 11:13:39 -06:00
|
|
|
wutta = wuttjamaican.cmd.base:main
|
2023-11-19 14:22:25 -06:00
|
|
|
|
2023-11-21 14:08:26 -06:00
|
|
|
wutta.subcommands =
|
2023-11-22 12:26:27 -06:00
|
|
|
date-organize = wuttjamaican.cmd.date_organize:DateOrganize
|
2023-11-22 11:13:39 -06:00
|
|
|
make-appdir = wuttjamaican.cmd.make_appdir:MakeAppDir
|
|
|
|
setup = wuttjamaican.cmd.setup:Setup
|