diff --git a/setup.py b/setup.py index d9a6f63b..3aadd2f5 100644 --- a/setup.py +++ b/setup.py @@ -1,35 +1,32 @@ # -*- coding: utf-8 -*- """ - OpenDig - ~~~~~ + OpenDig + ~~~~~ - :copyright: (c) 2014 by OpenNameSystem.org - :license: MIT, see LICENSE for more details. + :copyright: (c) 2014 by OpenNameSystem.org + :license: MIT, see LICENSE for more details. """ from setuptools import setup setup( - name='opendig', - version='0.1.0', - url='https://github.com/opennamesystem/opendig', - license='MIT', - author='Muneeb Ali (@muneeb), Ryan Shea (@ryaneshea)', - author_email='hello@halfmoonlabs.com', - description="Command-line tool for Open Name System (like dig is for DNS)", - packages=['opendig'], - scripts=['bin/opendig'], - zip_safe=False, - download_url = 'https://github.com/opennamesystem/opendig/archive/master.zip' - install_requires=[ - 'cement>=2.2.2', - 'dnspython>=1.11.1' - ], - keywords = ['domain', 'name', 'resoluton', 'bitcoin', 'address'], - classifiers=[ - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - ], + name='opendig', + version='0.1.0', + url='https://github.com/opennamesystem/opendig', + license='MIT', + author='Muneeb Ali (@muneeb), Ryan Shea (@ryaneshea)', + author_email='hello@halfmoonlabs.com', + description="Command-line tool for Open Name System (like dig is for DNS)", + packages=['opendig','namecoinrpc'], + scripts=['bin/opendig'], + zip_safe=False, + download_url = 'https://github.com/opennamesystem/opendig/archive/master.zip', + install_requires=['cement==2.2.2','dnspython==1.11.1'], + keywords = ['domain', 'name', 'resoluton', 'bitcoin', 'address'], + classifiers=[ + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + ], ) \ No newline at end of file