-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.4 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
# coding: utf-8
from setuptools import setup, find_packages
from zyklop import __author__
from zyklop import __author_email__
from zyklop import __description__
from zyklop import __name__
from zyklop import __version__
setup(
name=__name__,
version=__version__,
description=__description__,
long_description=(
open("README.rst").read() + '\n\n' +
open("docs/CHANGES.txt").read()
),
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Mirroring",
"Topic :: System :: Systems Administration",
],
keywords='server',
author=__author__,
author_email=__author_email__,
url='http://zyklop.rtfd.org',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'paramiko',
'argparse',
],
extras_require=dict(
test=['mock',
'testfixtures',
]
),
entry_points={
'console_scripts': [
'zyklop = zyklop.command:sync',
]
}
)