72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
# -*- coding: utf-8; -*-
|
|
################################################################################
|
|
#
|
|
# 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/>.
|
|
#
|
|
################################################################################
|
|
"""
|
|
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__,
|
|
author = "Lance Edgar",
|
|
author_email = "lance@edbob.org",
|
|
url = "https://rattailproject.org/",
|
|
license = "GNU GPL v3",
|
|
description = "Rattail integration package for NationBuilder",
|
|
long_description = README,
|
|
|
|
classifiers = [
|
|
'Development Status :: 4 - Beta',
|
|
'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',
|
|
],
|
|
|
|
install_requires = [
|
|
'rattail',
|
|
|
|
# TODO: these may be needed to build/release package
|
|
#'build',
|
|
#'invoke',
|
|
#'twine',
|
|
],
|
|
packages = find_packages(),
|
|
include_package_data = True,
|
|
|
|
entry_points = {
|
|
},
|
|
)
|