Edgewall Software

source: trunk/setup.py@ 1

Last change on this file since 1 was 1, checked in by Jonas Borgström, 20 years ago

Initial import

  • Property svn:executable set to *
File size: 294 bytes
Line 
1#!/usr/bin/env python
2
3from distutils.core import setup
4import svntrac
5
6VERSION = str(svntrac.__version__)
7URL = svntrac.__url__
8LICENSE = svntrac.__license__
9
10setup(name="svntrac",
11 description="",
12 version=VERSION,
13 license=LICENSE,
14 url=URL,
15 packages=['svntrac'])
16
Note: See TracBrowser for help on using the repository browser.