add MANIFEST.in setup.py
This commit is contained in:
parent
f9c046344d
commit
38dac5e390
5
MANIFEST.in
Normal file
5
MANIFEST.in
Normal file
@ -0,0 +1,5 @@
|
||||
include README.md LICENSE AUTHORS
|
||||
recursive-include docs *
|
||||
recursive-exclude docs *.pyc
|
||||
recursive-exclude docs *.pyo
|
||||
prune docs/_build
|
33
setup.py
Normal file
33
setup.py
Normal file
@ -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)',
|
||||
],
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user