You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f:
|
|
LONG_DESCRIPTION = f.read()
|
|
|
|
setup(
|
|
name='modoboa-homepage',
|
|
description="A customizable homepage for Modoboa",
|
|
long_description=LONG_DESCRIPTION,
|
|
license='GNU AGPL-3',
|
|
author='Cliss XXI',
|
|
author_email='contact@cliss21.com',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Topic :: Communications :: Email',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
],
|
|
keywords='homepage user modoboa',
|
|
packages=find_packages(exclude=['docs', 'tests', 'tests.*']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[],
|
|
use_scm_version=True,
|
|
setup_requires=['setuptools_scm'],
|
|
)
|