pypi wants me to supply email 0.9
authorAlexander Solovyov <piranha@piranha.org.ua>
Mon, 13 Jul 2009 19:21:55 +0300
changeset 39 c6705e908794
parent 38 d64102e06c34
child 40 ed3e8a14e817
pypi wants me to supply email
finaloption.py
setup.py
--- a/finaloption.py	Mon Jul 13 19:13:19 2009 +0300
+++ b/finaloption.py	Mon Jul 13 19:21:55 2009 +0300
@@ -8,6 +8,7 @@
 __all__ = ['command', 'dispatch']
 __version__ = '0.9'
 __author__ = 'Alexander Solovyov'
+__email__ = 'piranha@piranha.org.ua'
 
 write = sys.stdout.write
 err = sys.stderr.write
--- a/setup.py	Mon Jul 13 19:13:19 2009 +0300
+++ b/setup.py	Mon Jul 13 19:21:55 2009 +0300
@@ -13,6 +13,7 @@
     long_description = read('README'),
     version = finaloption.__version__,
     author = finaloption.__author__,
+    author_email = finaloption.__email__,
     url = 'http://hg.piranha.org.ua/finaloption/',
     classifiers = [
         'Development Status :: 4 - Beta',
@@ -20,7 +21,7 @@
         'Intended Audience :: Developers',
         'License :: OSI Approved :: BSD License',
         'Operating System :: OS Independent',
-        'Programming Languge :: Python',
+        'Programming Language :: Python',
         'Topic :: Software Development',
         ],
     py_modules = ['finaloption'],