rattail-nationbuilder/setup.py

72 lines
2.2 KiB
Python
Raw Normal View History

2023-05-05 13:33:41 -05:00
# -*- coding: utf-8; -*-
2023-05-05 14:43:55 -05:00
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2023 Lance Edgar
#
# This file is part of Rattail.
#
# Rattail is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# Rattail. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
2023-05-05 13:33:41 -05:00
"""
rattail-nationbuilder setup script
"""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'rattail_nationbuilder', '_version.py')).read())
README = open(os.path.join(here, 'README.md')).read()
setup(
name = "rattail-nationbuilder",
version = __version__,
2023-05-05 14:42:53 -05:00
author = "Lance Edgar",
author_email = "lance@edbob.org",
url = "https://rattailproject.org/",
license = "GNU GPL v3",
2023-05-05 13:33:41 -05:00
description = "Rattail integration package for NationBuilder",
long_description = README,
classifiers = [
2023-05-05 14:42:53 -05:00
'Development Status :: 4 - Beta',
2023-05-05 13:33:41 -05:00
'Intended Audience :: Developers',
2023-05-05 14:42:53 -05:00
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
2023-05-05 13:33:41 -05:00
'Natural Language :: English',
2023-05-05 14:42:53 -05:00
'Operating System :: OS Independent',
2023-05-05 13:33:41 -05:00
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Office/Business',
2023-05-05 14:42:53 -05:00
'Topic :: Software Development :: Libraries :: Python Modules',
2023-05-05 13:33:41 -05:00
],
install_requires = [
'rattail',
# TODO: these may be needed to build/release package
#'build',
#'invoke',
#'twine',
],
packages = find_packages(),
include_package_data = True,
entry_points = {
},
)