c5fa8cb7a95f — Peter Sanchez 13 years ago
Added setup.py for easy install. Updated README to reflect the update
2 files changed, 33 insertions(+), 0 deletions(-)

M README.txt
A => setup.py
M README.txt +7 -0
@@ 19,6 19,13 @@ The following are required to use this l
 Use
 ---
 
+Basic Install:
+
+  $ python setup.py build
+  $ sudo python setup.py install
+
+Alternative Install (Manually):
+
 Place zerigodns directory in your Python path. Either in your Python 
 installs site-packages directory or set your $PYTHONPATH environment 
 variable to include a directory where the zerigodns directory lives.

          
A => setup.py +26 -0
@@ 0,0 1,26 @@ 
+from distutils.core import setup
+
+long_description = open('README.txt').read()
+
+setup(
+    name='zerigodns',
+    version="0.2",
+    package_dir={'zerigodns': 'zerigodns'},
+    packages=['zerigodns',],
+    description='Python package to interface with Zerigo DNS API.',
+    author='Peter Sanchez',
+    author_email='petersanchez@gmail.com',
+    license='BSD License',
+    url='http://bitbucket.org/petersanchez/zerigodns/',
+    long_description=long_description,
+    platforms=["any"],
+    classifiers=[
+        'Development Status :: 2 - Beta',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: BSD License',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Environment :: Any Environment',
+    ],
+)
  No newline at end of file