| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup, find_packages, Extension |
|---|
| 4 | from pyflu import version |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | setup( |
|---|
| 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 |
|---|
| 18 | my projects and find useful. |
|---|
| 19 | |
|---|
| 20 | The ``update`` package depends on bsdiff_ and lxml. They can be found in the |
|---|
| 21 | Debian 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 | ) |
|---|