2016-01-29 13:40:12 +01:00
|
|
|
#
|
|
|
|
# gvacommon - common parts of gnuviechadmin
|
2020-03-02 11:12:53 +01:00
|
|
|
# Copyright (C) 2016-2020 Jan Dittberner
|
2016-01-29 13:40:12 +01:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
from gvacommon import __version__ as version
|
|
|
|
|
|
|
|
with open('README.rst') as readme_file:
|
|
|
|
readme = readme_file.read()
|
|
|
|
|
|
|
|
readme += """
|
|
|
|
license
|
|
|
|
-------
|
|
|
|
"""
|
|
|
|
|
|
|
|
with open('COPYING') as license_file:
|
|
|
|
readme += license_file.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='gvacommon',
|
|
|
|
version=version,
|
|
|
|
description='common utility code for gnuviechadmin applications',
|
|
|
|
long_description=readme,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
2020-03-02 11:12:53 +01:00
|
|
|
'Programming Language :: Python 3',
|
|
|
|
'Programming Language :: Python 3.7',
|
2016-01-29 13:40:12 +01:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
],
|
|
|
|
keywords='gnuviechadmin',
|
2020-03-02 11:19:13 +01:00
|
|
|
url='https://git.dittberner.info/gnuviech/gvacommon/',
|
2016-01-29 13:40:12 +01:00
|
|
|
author='Jan Dittberner',
|
|
|
|
author_email='jan@dittberner.info',
|
|
|
|
license='AGPLv3+',
|
|
|
|
packages=find_packages(),
|
|
|
|
test_suite='gvacommon.tests',
|
|
|
|
install_requires=[
|
|
|
|
'Django',
|
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False
|
|
|
|
)
|