source: tailor/setup.py @ 256

Revision 256, 975 bytes checked in by zooko@…, 8 years ago (diff)

add shebang so I can invoke setup.py like this: "./setup.py install"

Line 
1#!/usr/bin/env python
2
3from distutils.core import setup
4
5setup(name='tailor',
6    version='devel-2005-02-10',
7    author='Lele Gaifax',
8    author_email='lele@nautilus.homeip.net',
9    packages=['vcpx'],
10    scripts=['tailor.py'],
11    description='a tool to migrate changesets between CVS, Subversion, and darcs repositories.',
12    long_description="""\
13This script makes it easier to keep the upstream changes merged in
14a branch of a product, storing needed information such as the upstream
15URI and revision in special properties on the branched directory.
16""",
17    classifiers=[
18        'Development Status :: 4 - Beta',
19        'Environment :: Console',
20        'Intended Audience :: Developers',
21        'Intended Audience :: Developers',
22        'Programming Language :: Python',
23        'Operating System :: Unix',
24        'Topic :: Software Development :: Version Control',
25        # Don't know license
26        # Don't know the stability. Took a guess
27        ]
28    )
Note: See TracBrowser for help on using the repository browser.