nsupdate.info/setup.py

59 lines
1.8 KiB
Python
Raw Normal View History

2013-09-29 15:59:16 +02:00
"""
setup for nsupdate package
"""
from setuptools import setup, find_packages
2013-09-28 09:16:17 +02:00
with open('README.rst') as f:
2013-09-28 09:16:17 +02:00
readme_content = f.read()
setup(
name='nsupdate',
use_scm_version={
'write_to': 'src/nsupdate/_version.py',
},
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,
keywords="dyndns ddns dynamic dns django",
2019-04-04 01:23:40 +02:00
packages=find_packages('src', exclude=['_tests', ]),
package_dir={'': 'src'},
# See also the MANIFEST.in file.
# We want to install all the files in the package directories:
2013-09-28 09:16:17 +02:00
include_package_data=True,
zip_safe=False,
platforms='any',
setup_requires=['setuptools_scm'],
2017-05-27 00:55:55 +02:00
install_requires=[
'dnspython<1.17.0', # 1.16 is last with py27 support
'netaddr',
'django>=1.11.0',
2013-09-28 15:06:34 +02:00
'django-bootstrap-form',
2019-03-05 11:58:46 +01:00
'django-referrer-policy',
'django-registration-redux',
'django-extensions',
'social-auth-app-django',
'requests', # for our ddns_client
'setuptools_scm'
2013-09-28 09:16:17 +02:00
],
classifiers=[
'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',
'Programming Language :: Python :: 2',
2013-09-28 09:16:17 +02:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2013-09-28 09:16:17 +02:00
'Topic :: Internet :: Name Service (DNS)',
],
)