root/tags/domainmodel-0.1/setup.py

Revision 90, 1.3 kB (checked in by rgrp, 2 years ago)

Fix download_url in setup.py in both trunk and tags.

Line 
1 from setuptools import setup, find_packages
2
3 # get the version number
4 import sys
5 sys.path.insert(0, './src')
6 from dm import __version__
7
8 setup(
9     name = 'domainmodel',
10     version = __version__,
11     package_dir = { '' : 'src' },
12     packages = find_packages('src'),
13    
14     # no way to specify the dependency on django as we need a specific revision
15     install_requires = ['SQLObject>=0.6,<=0.7.99'], # 'Django>=0.95,'],
16
17     # metadata for upload to PyPI
18     author = 'Open Knowledge Foundation',
19     author_email = 'kforge-dev@lists.okfn.org',
20     license = 'LGPL',
21     url = 'http://www.kforgeproject.com/',
22     download_url = 'http://www.kforgeproject.com/files/domainmodel-%s.tar.gz' % __version__,
23     description = 'Framework for enterprise applications.',
24     long_description = \
25 """
26 DomainModel provides a framework for enterprise software applications.
27 """,
28     classifiers = [
29         'Development Status :: 3 - Alpha',
30         'Environment :: Console',
31         'Environment :: Web Environment',
32         'Intended Audience :: Developers',
33         'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
34         'Operating System :: OS Independent',
35         'Programming Language :: Python',
36         'Topic :: Software Development :: Libraries :: Python Modules'],
37 )
38
Note: See TracBrowser for help on using the browser.