~openerp-community/openobject-server/fix-1130010-toxml-escape-quot

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Antony Lesuisse
  • Date: 2012-11-07 01:57:08 UTC
  • Revision ID: al@openerp.com-20121107015708-o9l893ll9f32wjcy
[IMP] improve experience on for openerp developers on windows, notes in setup.py and fix some imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
execfile(join(os.path.dirname(__file__), 'openerp', 'release.py'))
76
76
 
 
77
# Notes for OpenERP developer on windows:
 
78
#
 
79
# To setup a windows developer evironement install python2.7 then pip and use
 
80
# "pip install <depencey>" for every dependency listed below.
 
81
#
 
82
# Dependecies that requires DLLs are not installable with pip install, for
 
83
# them we added comments with links where you can find the installers.
 
84
#
 
85
# OpenERP on windows also require the pywin32, the binary can be found at
 
86
# http://pywin32.sf.net
 
87
#
 
88
# Both python2.7 32bits and 64bits are known to work.
 
89
 
77
90
setuptools.setup(
78
91
      name             = 'openerp',
79
92
      version          = version,
90
103
      dependency_links = ['http://download.gna.org/pychart/'],
91
104
      #include_package_data = True,
92
105
      install_requires = [
93
 
          'pychart',
 
106
          'pychart', # not on pypi, use: pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz
94
107
          'babel',
95
108
          'docutils',
96
109
          'feedparser',
97
110
          'gdata',
98
 
          'lxml < 3',
 
111
          'lxml < 3', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
99
112
          'mako',
100
 
          'psutil',
 
113
          'PIL', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
 
114
          'psutil', # windows binary code.google.com/p/psutil/downloads/list
101
115
          'psycopg2',
102
116
          'pydot',
103
117
          'python-dateutil < 2',
104
 
          'python-ldap',
 
118
          'python-ldap', # optional
105
119
          'python-openid',
106
120
          'pytz',
107
121
          'pywebdav',
108
122
          'pyyaml',
109
 
          'reportlab',
 
123
          'reportlab', # windows binary pypi.python.org/pypi/reportlab
110
124
          'simplejson',
111
125
          'vatnumber',
112
126
          'vobject',
113
127
          'werkzeug',
114
128
          'xlwt',
115
 
          'zsi',
 
129
          'zsi', # optional
116
130
      ],
117
131
      extras_require = {
118
132
          'SSL' : ['pyopenssl'],