| Senturia бронь авиабилетов тут |

source: LinkExchange/trunk/setup.py @ 211

Revision 211, 1.9 KB checked in by lostclus, 13 months ago (diff)

Don't use nose anymore, so that now setup.py test command works properly.

Line 
1from setuptools import setup, find_packages
2setup(
3    name="LinkExchange",
4    version="0.4",
5    packages=find_packages(exclude=["tests"]),
6    namespace_packages=['linkexchange'],
7    author="Konstantin Korikov",
8    author_email="lostclus@gmail.com",
9    url="http://linkexchange.org.ua",
10    download_url="http://linkexchange.org.ua/downloads",
11    description="Universal link exchange service client library",
12    long_description="""
13    This library helps to integrate various link exchange services into python
14    powered website. Features includes support for Sape.ru and LinkFeed.ru
15    services, flexible link grouping and formatting facilities.
16    """,
17    classifiers=[
18        'Development Status :: 4 - Beta',
19        'Environment :: Web Environment',
20        'Intended Audience :: Developers',
21        'Intended Audience :: System Administrators',
22        'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
23        'Operating System :: OS Independent',
24        'Programming Language :: Python :: 2',
25        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
26        ],
27    license="LGPL",
28    install_requires=[
29        'setuptools',
30        ],
31    test_suite='tests',
32    tests_require=['phpserialize'],
33    entry_points="""
34    [linkexchange.clients]
35    sape = linkexchange.clients.sape:SapeClient
36    sape_context = linkexchange.clients.sape:SapeContextClient
37    sape_articles = linkexchange.clients.sape:SapeArticlesClient
38    linkfeed = linkexchange.clients.linkfeed:LinkFeedClient
39    trustlink = linkexchange.clients.trustlink:TrustLinkClient
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    [console_scripts]
50    lxrefresh = linkexchange.commands.lxrefresh:main
51    """,
52)
Note: See TracBrowser for help on using the repository browser.