source: pyflu/setup.py @ 77bf72ffc703e0c38bd368f20c9eb99ac02ff316

Revision 77bf72ffc703e0c38bd368f20c9eb99ac02ff316, 1.1 KB checked in by Luper Rouch <luper.rouch@…>, 18 months ago (diff)

pyflu: new mixin class to create update dialogs in Qt

  • Property mode set to 100755
Line 
1#!/usr/bin/env python
2
3from setuptools import setup, find_packages, Extension
4from pyflu import version
5
6
7setup(
8    name = "pyflu",
9    version = version(),
10    author = "Luper Rouch",
11    author_email = "luper.rouch@gmail.com",
12    maintainer = "Luper Rouch",
13    maintainer_email = "luper.rouch@gmail.com",
14    url = "http://projects.luper.fr/misc/wiki/pyflu",
15    description = "A collection of Python utilities.",
16    long_description = 
17"""Helpers for standard Python modules, things that I frequently use in
18my projects and find useful.
19
20The ``update`` package depends on bsdiff_ and lxml. They can be found in the
21Debian packages ``python-bsdiff`` and ``python-lxml``.
22
23.. _bsdiff: http://starship.python.net/crew/atuining/cx_bsdiff/index.html
24""",
25    classifiers = [
26            "Development Status :: 3 - Alpha",
27            "Intended Audience :: Developers",
28            "License :: OSI Approved :: BSD License",
29            "Topic :: Software Development :: Libraries :: Python Modules",
30        ],
31
32    packages = find_packages(),
33
34    entry_points = {
35        "console_scripts": ["pyflu-makepatch = pyflu.update:makepatch"],
36    },
37)
Note: See TracBrowser for help on using the repository browser.