53 lines
1.2 KiB
INI
53 lines
1.2 KiB
INI
|
# -*- coding: utf-8; -*-
|
||
|
|
||
|
[metadata]
|
||
|
name = Messkit
|
||
|
version = attr: messkit.__version__
|
||
|
author = Lance Edgar
|
||
|
author_email = lance@edbob.org
|
||
|
url = https://rattailproject.org
|
||
|
description = Generic-ish Data Utility App
|
||
|
long_description = file: README.rst
|
||
|
classifiers =
|
||
|
Development Status :: 3 - Alpha
|
||
|
Environment :: Console
|
||
|
Environment :: Web Environment
|
||
|
Framework :: Pyramid
|
||
|
Intended Audience :: Developers
|
||
|
Natural Language :: English
|
||
|
Operating System :: POSIX :: Linux
|
||
|
Programming Language :: Python
|
||
|
Programming Language :: Python :: 3
|
||
|
Topic :: Office/Business
|
||
|
|
||
|
|
||
|
[options]
|
||
|
install_requires =
|
||
|
|
||
|
# TODO: user should get to choose which of these is needed?
|
||
|
mysql-connector-python
|
||
|
psycopg2
|
||
|
|
||
|
prompt_toolkit
|
||
|
rich
|
||
|
Sphinx
|
||
|
Tailbone
|
||
|
|
||
|
packages = find:
|
||
|
include_package_data = True
|
||
|
|
||
|
|
||
|
[options.entry_points]
|
||
|
|
||
|
rattail.config.extensions =
|
||
|
messkit = messkit.config:MesskitConfig
|
||
|
|
||
|
console_scripts =
|
||
|
messkit = messkit.commands:main
|
||
|
|
||
|
messkit.commands =
|
||
|
install = messkit.commands:Install
|
||
|
|
||
|
paste.app_factory =
|
||
|
main = messkit.web.app:main
|