From 38dac5e3907c22f1a6963004b8307e6570d0c8f3 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 28 Sep 2013 09:16:17 +0200 Subject: [PATCH] add MANIFEST.in setup.py --- MANIFEST.in | 5 +++++ setup.py | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 MANIFEST.in create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..ad081fc --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include README.md LICENSE AUTHORS +recursive-include docs * +recursive-exclude docs *.pyc +recursive-exclude docs *.pyo +prune docs/_build diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..eb77a45 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +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/', + license='MIT', + 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=[ + 'django', + 'dnspython', + ], + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Web Environment', + 'Framework :: Django', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Topic :: Internet :: Name Service (DNS)', + ], +)