2013-09-28 09:16:17 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open('README.md') as f:
|
|
|
|
readme_content = f.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='nsupdate',
|
|
|
|
version='0.0.1a0',
|
|
|
|
url='http://github.com/asmaps/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,
|
|
|
|
packages=['nsupdate'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
2013-09-28 15:06:34 +02:00
|
|
|
'django<1.6',
|
2013-09-28 09:16:17 +02:00
|
|
|
'dnspython',
|
2013-09-28 15:06:34 +02:00
|
|
|
'south',
|
|
|
|
'django-bootstrap-form',
|
|
|
|
'django-registration',
|
2013-09-28 15:43:17 +02:00
|
|
|
# packages only needed for development:
|
|
|
|
'django-debug-toolbar',
|
|
|
|
'pytest',
|
|
|
|
'pytest-django',
|
|
|
|
'pytest-pep8',
|
|
|
|
'sphinx',
|
2013-09-28 09:16:17 +02:00
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
|
|
'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.7',
|
|
|
|
'Topic :: Internet :: Name Service (DNS)',
|
|
|
|
],
|
|
|
|
)
|