-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (60 loc) · 1.92 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
60
61
62
63
64
# See license.txt for license details.
# Copyright (c) 2015 Simplistix Ltd, 2016 Chris Withers
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
setup(
name='archivist',
version='0.0.dev0',
author='Chris Withers',
author_email='chris@simplistix.co.uk',
license='MIT',
description=(
"A plugable tool for comparing actual configuration with an expected "
"configuration stored in a source control system."
),
#long_description=open(os.path.join(base_dir,'docs','description.rst')).read(),
url='https://github.com/Simplistix/archivist',
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'pyyaml',
'voluptuous',
],
extras_require=dict(
test=[
'testfixtures',
'nose',
'nose-cov',
'mock',
'coveralls',
'mailinglogger',
],
build=['sphinx', 'pkginfo', 'setuptools-git', 'twine', 'wheel']
),
entry_points = {
'console_scripts': [
'archivist = archivist.main:main',
],
'archivist.repo': [
'git = archivist.repos.git:Plugin',
],
'archivist.source': [
'crontab = archivist.sources.crontab:Plugin',
'jenkins = archivist.sources.jenkins:Plugin',
'packages = archivist.sources.packages:Plugin',
'paths = archivist.sources.paths:Plugin',
],
'archivist.notification': [
'email = archivist.notifications.email:Plugin',
'stream = archivist.notifications.stream:Plugin',
]},
)