<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>setup.cfg</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,31 +1,43 @@
-# copy these lines to a file named: setup.py
-# To build and install the elemlist module you need the following
-# setup.py file that uses the distutils:
-from distutils.core import setup, Extension
+from distutils.core import setup, find_packages, Extension
 import os
-import os.path 
 import sys
 
-setup (name = &quot;fapws3&quot;,
-       version = &quot;0.1&quot;,
-       maintainer = &quot;William&quot;,
-       maintainer_email = &quot;william.os4y@gmail.com&quot;,
-       description = &quot;FAPWS Python module&quot;,
-       packages= ['fapws','fapws/contrib'],
+def read_file(name):
+    return open(os.path.join(os.path.dirname(__file__),name)).read()
+
+readme = read_file('README')
+
+setup(name='fapws3',
+      version=&quot;0.1&quot;,
+      description=&quot;Fast Asynchronous Python Web Server&quot;,
+      long_description=readme,
+classifiers=['Development Status :: 4 - Beta','Environment :: Web Environment','License :: OSI Approved :: GNU General Public License (GPL)','Programming Language :: C','Programming Language :: Python','Topic :: Internet :: WWW/HTTP :: HTTP Servers','Topic :: Internet :: WWW/HTTP :: WSGI :: Server'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
+      keywords='',
+      author='William',
+      author_email='william.os4y@gmail.com',
+      url='http://william-os4y.livejournal.com/',
+      license='GPL',
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          # -*- Extra requirements: -*-
+      ],
+      entry_points=&quot;&quot;&quot;
+      # -*- Entry points: -*-
+      &quot;&quot;&quot;,
+
+      packages= find_packages(),
+      ext_modules = [
+          Extension('fapws._evwsgi',
+                  sources=['fapws/_evwsgi.c'],
+                  #include_dirs=[&quot;/usr/include&quot;],
+                  #library_dirs=[&quot;/usr/local/lib&quot;], # add LD_RUN_PATH in your environment
+                  libraries=['ev'],
+                  #extra_compile_args=[&quot;-ggdb&quot;],
+                  #define_macros=[(&quot;DEBUG&quot;, &quot;1&quot;)],
+                  )
+                  ]
+      )
 
-       ext_modules = [
-	       Extension('fapws._evwsgi',
-	       sources=['fapws/_evwsgi.c'],
-           # I'm on an archlinux ;-)
-           # Here I'm pointing to the direcoty where libevent has been build
-           # In this directory wi can find sources and compiled objects (as after a &quot;./configure; make&quot;)
-	       #include_dirs=[&quot;/usr/include&quot;],
-	       #library_dirs=[&quot;/usr/local/lib&quot;], # add LD_RUN_PATH in your environment
-	       libraries=['ev'],
-           #extra_compile_args=[&quot;-ggdb&quot;],
-           #define_macros=[(&quot;DEBUG&quot;, &quot;1&quot;)],
-	       )
-	       ]
-)
 
 # end of file: setup.py</diff>
      <filename>setup.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>457f56f3d87470b164950ec233bc114a89775db5</id>
    </parent>
  </parents>
  <author>
    <name>William.os4y</name>
    <email>william.os4y@gmail.com</email>
  </author>
  <url>http://github.com/william-os4y/fapws3/commit/79c793a4b27b47dea222eadf54661e3430322a8f</url>
  <id>79c793a4b27b47dea222eadf54661e3430322a8f</id>
  <committed-date>2008-12-26T05:59:18-08:00</committed-date>
  <authored-date>2008-12-26T05:59:18-08:00</authored-date>
  <message>Eggify the setup files
(thanks to pjstevns)</message>
  <tree>e6882436be0f7ce7e2145f3e3623d205cf34e733</tree>
  <committer>
    <name>William.os4y</name>
    <email>william.os4y@gmail.com</email>
  </committer>
</commit>
