Update setuptools config
darcs-hash:20071106175451-86b55-f45d18f7cd7cfe186a4623243b9564ae5d1f11dc.gz
This commit is contained in:
26
setup.py
26
setup.py
@@ -20,14 +20,20 @@
|
|||||||
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
##
|
##
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(name = 'jcl', \
|
setup(name='jcl',
|
||||||
version = '0.1', \
|
version='0.1',
|
||||||
description = 'Jabber Component Library', \
|
description='Jabber Component Library',
|
||||||
author = 'David Rousselie', \
|
author='David Rousselie',
|
||||||
author_email = 'dax@happycoders.org', \
|
author_email='dax@happycoders.org',
|
||||||
url = 'http://people.happycoders.org/dax/projects/jcl', \
|
license="GPL",
|
||||||
package_dir = {'': 'src'}, \
|
keywords="jabber component",
|
||||||
packages = ['jcl', 'jcl.jabber', 'jcl.model'], \
|
url='http://people.happycoders.org/dax/projects/jcl',
|
||||||
test_suite = 'jcl.tests.suite')
|
package_dir={'': 'src'},
|
||||||
|
packages=find_packages('src', exclude=["*.tests",
|
||||||
|
"*.tests.*",
|
||||||
|
"tests.*",
|
||||||
|
"tests"]),
|
||||||
|
test_suite='jcl.tests.suite',
|
||||||
|
install_requires=['SQLObject>=0.8', 'pyxmpp>=1.0', 'pysqlite>=2.0'])
|
||||||
|
|||||||
Reference in New Issue
Block a user