Updated Debian changelog.
[zeroinstall.git] / setup.py
blob5ddbf3a22ce1a8c46d82d3c75b31a72e0a7eb1ea
1 from distutils.core import setup
2 import zeroinstall
4 setup(name="zeroinstall-injector",
5 version=zeroinstall.version,
6 description="The Zero Install Injector (0launch)",
7 author="Thomas Leonard",
8 author_email="zero-install-devel@lists.sourceforge.net",
9 url="http://0install.net",
10 scripts=['0launch', '0alias', '0store'],
11 data_files = [('man/man1', ['0launch.1', '0alias.1', '0store.1'])],
12 license='LGPL',
13 long_description="""\
14 A running process is created by combining many different libraries (and other
15 components). In the Zero Install world, we have all versions of each library
16 available at all times. The problem then is how to choose which versions to
17 use.
19 The injector solves this problem by selecting components to meet a program's
20 requirements, according to a policy you give it. The injector finds out which
21 versions are available, and downloads and runs the ones you choose.""",
22 packages=["zeroinstall", "zeroinstall.zerostore", "zeroinstall.injector"])