forked from 9seconds/concierge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (42 loc) · 1.34 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
with open("README.rst", "rt") as readme_fp:
long_description = readme_fp.read().strip()
REQUIREMENTS = (
"inotify_simple",
"enum34"
)
setuptools.setup(
name="concierge",
version="0.2.2",
description="Maintainable SSH config",
long_description=long_description,
url="https://github.com/9seconds/concierge",
author="Sergey Arkhipov",
author_email="serge@aerialsounds.org",
maintainer="Sergey Arkhipov",
maintainer_email="serge@aerialsounds.org",
license="MIT",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=REQUIREMENTS,
entry_points={
"console_scripts": [
"concierge = concierge.endpoints.daemon:main",
"concierge-check = concierge.endpoints.check:main"
],
"concierge.templater": [
"dummy = concierge.templater:Templater"
]
},
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
]
)