2023-05-16 14:28:31 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
[metadata]
|
|
|
|
name = rattail-mailchimp
|
|
|
|
version = attr: rattail_mailchimp.__version__
|
|
|
|
author = Lance Edgar
|
|
|
|
author_email = lance@edbob.org
|
|
|
|
url = https://rattailproject.org/
|
|
|
|
license = GNU GPL v3
|
|
|
|
description = Rattail Software Interfaces for MailChimp
|
|
|
|
long_description = file: README.rst
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Environment :: Console
|
|
|
|
Environment :: Web Environment
|
|
|
|
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 =
|
|
|
|
mailchimp3
|
|
|
|
rattail
|
|
|
|
|
|
|
|
packages = find:
|
|
|
|
include_package_data = True
|
|
|
|
zip_safe = False
|
|
|
|
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
|
2023-11-30 22:22:33 -06:00
|
|
|
rattail.subcommands =
|
2023-05-16 14:28:31 -05:00
|
|
|
import-mailchimp = rattail_mailchimp.commands:ImportMailChimp
|
|
|
|
|
2024-05-16 20:04:52 -05:00
|
|
|
rattail.typer_imports =
|
|
|
|
rattail_mailchimp = rattail_mailchimp.commands
|
|
|
|
|
2023-05-16 14:28:31 -05:00
|
|
|
rattail.emails =
|
|
|
|
rattail_mailchimp = rattail_mailchimp.emails
|