2013-09-29 15:59:16 +02:00
|
|
|
"""
|
|
|
|
setup for nsupdate package
|
|
|
|
"""
|
|
|
|
|
2013-09-28 18:49:09 +02:00
|
|
|
from setuptools import setup, find_packages
|
2013-09-28 09:16:17 +02:00
|
|
|
|
2013-11-09 21:45:30 +01:00
|
|
|
|
2013-09-28 18:49:09 +02:00
|
|
|
with open('README.rst') as f:
|
2013-09-28 09:16:17 +02:00
|
|
|
readme_content = f.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='nsupdate',
|
2018-12-28 20:40:34 +01:00
|
|
|
use_scm_version=True,
|
2013-10-03 00:43:33 +02:00
|
|
|
url='http://github.com/nsupdate-info/nsupdate.info/',
|
2013-09-28 10:43:49 +02:00
|
|
|
license='BSD',
|
2013-09-28 09:16:17 +02:00
|
|
|
author='The nsupdate.info Team (see AUTHORS)',
|
|
|
|
author_email='info@nsupdate.info',
|
|
|
|
description='A dynamic DNS update service',
|
|
|
|
long_description=readme_content,
|
2013-09-28 18:49:09 +02:00
|
|
|
keywords="dyndns ddns dynamic dns django",
|
|
|
|
packages=find_packages(exclude=['_tests', ]),
|
|
|
|
package_data={
|
2013-10-17 23:58:44 +02:00
|
|
|
'nsupdate': [
|
2013-11-09 20:00:57 +01:00
|
|
|
'templates/*.html',
|
|
|
|
'templates/includes/*.html',
|
2013-10-17 23:58:44 +02:00
|
|
|
'static/*.html',
|
2013-11-09 20:00:57 +01:00
|
|
|
'static/*.png',
|
|
|
|
'static/css/*.css',
|
2014-08-28 00:11:07 +02:00
|
|
|
'locale/*/LC_MESSAGES/*',
|
2013-10-17 23:58:44 +02:00
|
|
|
],
|
|
|
|
'nsupdate.accounts': [
|
|
|
|
'templates/accounts/*.html',
|
|
|
|
'templates/registration/*.html',
|
2013-11-09 20:00:57 +01:00
|
|
|
'templates/registration/*.txt',
|
2013-10-17 23:58:44 +02:00
|
|
|
],
|
2014-08-28 00:11:07 +02:00
|
|
|
'nsupdate.login': [
|
|
|
|
'templates/*.html',
|
|
|
|
],
|
2013-10-17 23:58:44 +02:00
|
|
|
'nsupdate.main': [
|
|
|
|
'templates/main/*.html',
|
2013-11-09 20:00:57 +01:00
|
|
|
'templates/main/includes/*.html',
|
2013-10-17 23:58:44 +02:00
|
|
|
],
|
2013-09-28 18:49:09 +02:00
|
|
|
},
|
2013-09-28 09:16:17 +02:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
2018-12-28 20:40:34 +01:00
|
|
|
setup_requires=['setuptools_scm'],
|
2017-05-27 00:55:55 +02:00
|
|
|
install_requires=[
|
|
|
|
'dnspython',
|
2014-09-23 00:48:54 +02:00
|
|
|
'netaddr',
|
2018-09-30 23:04:28 +02:00
|
|
|
'django',
|
2013-09-28 15:06:34 +02:00
|
|
|
'django-bootstrap-form',
|
2017-01-21 02:03:51 +01:00
|
|
|
'django-registration-redux',
|
2013-10-18 15:30:17 -07:00
|
|
|
'django-extensions',
|
2017-01-21 02:03:51 +01:00
|
|
|
'social-auth-app-django',
|
2014-09-26 02:39:39 +02:00
|
|
|
'requests', # for our ddns_client
|
2018-12-28 20:40:34 +01:00
|
|
|
'setuptools_scm'
|
2013-09-28 09:16:17 +02:00
|
|
|
],
|
|
|
|
classifiers=[
|
2014-07-17 15:15:45 +02:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2013-09-28 09:16:17 +02:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Django',
|
2013-09-28 10:43:49 +02:00
|
|
|
'License :: OSI Approved :: BSD License',
|
2013-09-28 09:16:17 +02:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
2013-12-14 00:35:29 +01:00
|
|
|
'Programming Language :: Python :: 2',
|
2013-09-28 09:16:17 +02:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-12-14 00:35:29 +01:00
|
|
|
'Programming Language :: Python :: 3',
|
2014-08-27 17:57:33 +02:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2016-08-13 16:26:15 +02:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-02-10 15:35:09 +01:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-09-30 23:04:28 +02:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2013-09-28 09:16:17 +02:00
|
|
|
'Topic :: Internet :: Name Service (DNS)',
|
|
|
|
],
|
|
|
|
)
|