63 lines
1.8 KiB
INI
63 lines
1.8 KiB
INI
# -*- coding: utf-8; -*-
|
|
|
|
[metadata]
|
|
name = tailbone-theo
|
|
version = attr: theo.__version__
|
|
author = Lance Edgar
|
|
author_email = lance@edbob.org
|
|
url = https://rattailproject.org
|
|
description = Theo, the order system
|
|
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 =
|
|
mysql-connector-python
|
|
psycopg2
|
|
Tailbone
|
|
|
|
packages = find:
|
|
include_package_data = True
|
|
|
|
|
|
[options.extras_require]
|
|
catapult = onager; rattail-onager; tailbone-onager
|
|
corepos = pyCOREPOS; rattail-corepos; tailbone-corepos
|
|
fabric = rattail-fabric2
|
|
locsms = luckysmores; rattail-luckysmores; tailbone-locsms
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
theo = theo.commands:main
|
|
|
|
rattail.config.extensions =
|
|
theo = theo.config:TheoConfig
|
|
|
|
rattail.importing =
|
|
# nb. we always register all 3 handlers here, for version
|
|
# imports. any which fail to load will simply not appear
|
|
# available to the user.
|
|
to_rattail_versions.from_rattail.import.theo_catapult = theo.importing.versions_catapult:FromTheoToTheoVersions
|
|
to_rattail_versions.from_rattail.import.theo_corepos = theo.importing.versions_corepos:FromTheoToTheoVersions
|
|
to_rattail_versions.from_rattail.import.theo_locsms = theo.importing.versions_locsms:FromTheoToTheoVersions
|
|
|
|
paste.app_factory =
|
|
main = theo.web.app:main
|
|
webapi = theo.web.webapi:main
|
|
|
|
theo.commands =
|
|
install = theo.commands:Install
|