forked from lra/mackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.06 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
"""Setup file to automate the install of Mackup in the Python environment."""
from setuptools import setup
from mackup.constants import VERSION
setup(
name="mackup",
version=VERSION,
author="Laurent Raufaste",
author_email="analogue@glop.org",
url="https://github.com/lra/mackup",
description="Keep your application settings in sync (OS X/Linux)",
keywords="configuration config dotfiles sync backup dropbox gdrive box",
license="GPLv3",
packages=["mackup"],
install_requires=["docopt", "six"],
entry_points={"console_scripts": ["mackup=mackup.main:main"]},
package_data={"mackup": ["applications/*.cfg"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
(
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"
),
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Utilities",
],
)