-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·59 lines (55 loc) · 2.28 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python
# -----------------------------------------------------------------------------
# Project : Sink
# -----------------------------------------------------------------------------
# Author : Sebastien Pierre <[email protected]>
# License : Revised BSD License
# -----------------------------------------------------------------------------
# Creation date : 2005-04-20
# Last mod. : 2021-07-25
# -----------------------------------------------------------------------------
from distutils.core import setup
SUMMARY = "Multiple directory change detection and synchronization"
DESCRIPTION = """\
Sink allows easy and fast comparison of multiple repositories, compared to one
"origin" directory. Sink then allows to easily bind actions to the various
detected changes, such as uploading files or running a diff utility. Sink is an
ideal companion to a revision control system, or when you have multiple modified
copies of a single directory.
"""
# ------------------------------------------------------------------------------
#
# SETUP DECLARATION
#
# ------------------------------------------------------------------------------
setup(
name="sink",
version="2.0.0",
author="Sebastien Pierre",
author_email="[email protected]",
description=SUMMARY,
long_description=DESCRIPTION,
license="Revised BSD License",
keywords="change detection, synchronization",
url="http://github.com/sebastien/sink",
download_url="http://github.com/sebastien/sink/tarball/master",
package_dir={"": "src/py"},
packages=["sink"],
scripts=["bin/sink"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Mirroring",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
],
)
# EOF - vim: tw=80 ts=4 sw=4 fenc=latin-1 noet