[REF] Add the uuid library in the dependencies and remove the commented code

bzr revid: stephane@openerp.com-20101229115233-rhr4ika4611kikue
This commit is contained in:
Stephane Wirtel 2010-12-29 12:52:33 +01:00
parent 191f66c521
commit 086b9fd028
1 changed files with 9 additions and 17 deletions

View File

@ -33,7 +33,7 @@ import glob
from pprint import pprint as pp
from setuptools import setup as official_setup, find_packages
from setuptools import setup, find_packages
from setuptools.command.install import install
from distutils.sysconfig import get_python_lib
@ -169,21 +169,18 @@ options = {
"optimize": 2,
"dist_dir": 'dist',
"packages": [
"lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
"lxml.objectify", "decimal", "xml", "xml", "xml.dom", "xml.xpath",
"encodings", "dateutil", "wizard", "pychart", "PIL", "pyparsing",
"pydot", "asyncore","asynchat", "reportlab", "vobject",
"HTMLParser", "select", "mako", "poplib",
"imaplib", "smtplib", "email", "yaml", "DAV",
],
"lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
"lxml.objectify", "decimal", "xml", "xml", "xml.dom", "xml.xpath",
"encodings", "dateutil", "wizard", "pychart", "PIL", "pyparsing",
"pydot", "asyncore","asynchat", "reportlab", "vobject",
"HTMLParser", "select", "mako", "poplib",
"imaplib", "smtplib", "email", "yaml", "DAV",
"uuid",
],
"excludes" : ["Tkconstants","Tkinter","tcl"],
}
}
def setup(**kwargs):
#pp(kwargs)
return official_setup(**kwargs)
setup(name = name,
version = version,
description = description,
@ -225,13 +222,8 @@ setup(name = name,
'reportlab',
'caldav',
'pyyaml',
#'django',
'pywebdav'
#'cx_Oracle',
#'mysqldb',
'feedparser',
#'bsddb3',
'egenix-mx-base'
],
extras_require={
'SSL' : ['pyopenssl'],