forked from TNG/svnfiltereddump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (29 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
from distutils.core import setup
setup(
name='svnfiltereddump',
version='1.2',
description='Extracts parts from Subversion repositories',
author='Harald Wilhelmi',
author_email='[email protected]',
url='https://github.com/tng/svnfiltereddump',
packages=['svnfiltereddump'],
package_dir = { '': 'src' },
long_description="""\
The svnfiltereddump tool allows to extract parts of Subversion
repositories. It is a bit like svndumpfilter or svndumpfilter2.
But it has less limitations and has the ability to drop drop
old revisions.
""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control",
],
keywords='subversion',
license='GPL',
scripts = [ 'src/bin/svnfiltereddump' ]
)