source: LinkExchange/tags/0.2/setup.py @ 87

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

New script lxrefresh to refresh links database from command line or cron.

Line 
1from setuptools import setup, find_packages
2setup(
3    name = "LinkExchange",
4    version = "0.2",
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    scripts = [
31        'scripts/lxrefresh',
32        ],
33    test_suite = 'nose.collector',
34    tests_require = ['nose'],
35    entry_points = """
36    [linkexchange.clients]
37    sape = linkexchange.clients.sape:SapeClient
38    sape_context = linkexchange.clients.sape:SapeContextClient
39    linkfeed = linkexchange.clients.linkfeed:LinkFeedClient
40
41    [linkexchange.multihash_drivers]
42    mem = linkexchange.db_drivers:MemMultiHashDriver
43    shelve = linkexchange.db_drivers:ShelveMultiHashDriver
44
45    [linkexchange.formatters]
46    inline = linkexchange.formatters:InlineFormatter
47    list = linkexchange.formatters:ListFormatter
48
49    [trac.plugins]
50    linkexchange = linkexchange.trac.plugin
51    """,
52)
Note: See TracBrowser for help on using the repository browser.