|
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 |
|
|---|
| 3 | from distutils.core import setup
|
|---|
| 4 | import svntrac
|
|---|
| 5 |
|
|---|
| 6 | VERSION = str(svntrac.__version__)
|
|---|
| 7 | URL = svntrac.__url__
|
|---|
| 8 | LICENSE = svntrac.__license__
|
|---|
| 9 |
|
|---|
| 10 | setup(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.