nsupdate.info/setup.py

56 lines
1.6 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',
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,
keywords="dyndns ddns dynamic dns django",
packages=find_packages(exclude=['_tests', ]),
package_data={
'nsupdate.nsupdate.static': ['*', ],
'nsupdate.nsupdate.templates': ['*', ],
'nsupdate.main.static': ['*', ],
'nsupdate.main.templates': ['*', ],
'nsupdate.accounts.static': ['*', ],
'nsupdate.accounts.templates': ['*', ],
},
2013-09-28 09:16:17 +02:00
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',
# 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)',
],
)