005f43d14e
`wutta setup` is the only real sub/command yet, and it does nothing
55 lines
1.3 KiB
INI
55 lines
1.3 KiB
INI
# -*- 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
|
|
long_description = file: README.md
|
|
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]
|
|
db = SQLAlchemy<2
|
|
docs = Sphinx
|
|
tests = pytest-cov; tox
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
wutta = wuttjamaican.commands.base:main
|
|
|
|
wutta.commands =
|
|
setup = wuttjamaican.commands.setup:Setup
|