2023-05-16 13:09:08 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
[metadata]
|
|
|
|
name = rattail-harvest
|
|
|
|
version = attr: rattail_harvest.__version__
|
|
|
|
author = Lance Edgar
|
|
|
|
author_email = lance@edbob.org
|
|
|
|
url = https://rattailproject.org/
|
|
|
|
description = Rattail integration package for Harvest
|
|
|
|
long_description = file: README.rst
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 3 - Alpha
|
|
|
|
Environment :: Console
|
|
|
|
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
|
|
|
|
Topic :: Office/Business
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
|
|
|
|
|
|
|
|
[options]
|
|
|
|
install_requires =
|
|
|
|
invoke
|
|
|
|
rattail[db]
|
|
|
|
|
|
|
|
packages = find:
|
|
|
|
include_package_data = True
|
|
|
|
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
|
2023-11-23 06:50:29 -06:00
|
|
|
rattail.subcommands =
|
2023-05-16 13:09:08 -05:00
|
|
|
import-harvest = rattail_harvest.commands:ImportHarvest
|
|
|
|
|
2024-05-16 19:19:24 -05:00
|
|
|
rattail.typer_imports =
|
|
|
|
rattail_harvest = rattail_harvest.commands
|
|
|
|
|
2023-05-16 13:09:08 -05:00
|
|
|
rattail.config.extensions =
|
|
|
|
rattail_harvest = rattail_harvest.config:RattailHarvestExtension
|
|
|
|
|
|
|
|
rattail.importing =
|
|
|
|
to_rattail.from_harvest.import = rattail_harvest.importing.harvest:FromHarvestToRattail
|