source: LinkExchange/tags/0.1/setup.py @ 70

Revision 70, 1.9 KB checked in by lostclus, 3 years ago (diff)

Added url and download_url.

Line 
1from setuptools import setup, find_packages
2setup(
3    name = "LinkExchange",
4    version = "0.1",
5    packages = find_packages(),
6    author = "Konstantin Korikov",
7    author_email = "lostclus@gmail.com",
8    url = "http://linkexchange.org.ua",
9    download_url = "http://linkexchange.org.ua/downloads",
10    description = "Universal link exchange service client library",
11    long_description = """
12    This library helps to integrate various link exchange services into python
13    powered website. Features includes support for Sape.ru and LinkFeed.ru
14    services, flexible link grouping and formatting facilities.
15    """,
16    classifiers = [
17        'Development Status :: 4 - Beta',
18        'Environment :: Web Environment',
19        'Framework :: Django',
20        'Framework :: Trac',
21        'Framework :: TurboGears',
22        'Intended Audience :: Developers',
23        'Intended Audience :: System Administrators',
24        'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
25        'Operating System :: OS Independent',
26        'Programming Language :: Python :: 2',
27        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
28        ],
29    license = "LGPL",
30    test_suite = 'nose.collector',
31    tests_require = ['nose'],
32    entry_points = """
33    [linkexchange.clients]
34    sape = linkexchange.clients.sape:SapeClient [phpserialize]
35    sape_context = linkexchange.clients.sape:SapeContextClient [phpserialize]
36    linkfeed = linkexchange.clients.linkfeed:LinkFeedClient
37
38    [linkexchange.multihash_drivers]
39    mem = linkexchange.db_drivers:MemMultiHashDriver
40    shelve = linkexchange.db_drivers:ShelveMultiHashDriver
41
42    [linkexchange.formatters]
43    inline = linkexchange.formatters:InlineFormatter
44    list = linkexchange.formatters:ListFormatter
45
46    [trac.plugins]
47    linkexchange = linkexchange.trac.plugin
48    """,
49    extras_require = dict(phpserialize = "phpserialize"),
50)
Note: See TracBrowser for help on using the repository browser.