[FIX] translation export: added missing translation function `_lt` for javascript...
[odoo/odoo.git] / setup.py
index 77a59d5..6efec4e 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -74,6 +74,19 @@ def py2exe_options():
 
 execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
 
+# Notes for OpenERP developer on windows:
+#
+# To setup a windows developer evironement install python2.7 then pip and use
+# "pip install <depencey>" for every dependency listed below.
+#
+# Dependecies that requires DLLs are not installable with pip install, for
+# them we added comments with links where you can find the installers.
+#
+# OpenERP on windows also require the pywin32, the binary can be found at
+# http://pywin32.sf.net
+#
+# Both python2.7 32bits and 64bits are known to work.
+
 setuptools.setup(
       name             = 'openerp',
       version          = version,
@@ -90,32 +103,34 @@ setuptools.setup(
       dependency_links = ['http://download.gna.org/pychart/'],
       #include_package_data = True,
       install_requires = [
-          'pychart',
+          'pychart', # not on pypi, use: pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz
           'babel',
           'docutils',
           'feedparser',
           'gdata',
-          'lxml',
+          'lxml < 3', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
           'mako',
+          'PIL', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
+          'psutil', # windows binary code.google.com/p/psutil/downloads/list
           'psycopg2',
           'pydot',
           'python-dateutil < 2',
-          'python-ldap',
+          'python-ldap', # optional
           'python-openid',
           'pytz',
           'pywebdav',
           'pyyaml',
-          'reportlab',
+          'reportlab', # windows binary pypi.python.org/pypi/reportlab
           'simplejson',
           'vatnumber',
           'vobject',
           'werkzeug',
           'xlwt',
-          'zsi',
       ],
       extras_require = {
           'SSL' : ['pyopenssl'],
       },
+      tests_require = ['unittest2'],
       **py2exe_options()
 )