-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="mkgreg",
version="4.0",
description="Making Greg's systems awesome",
long_description="A set of scripts and Ansible playbooks to make Greg's" +
" systems awesome",
url="https://github.com/greg-hellings/config",
author="Gregory Hellings",
license="GPLv3",
classifiers=[
"Development Status :: 5 - Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved : GNU General Public License v3 (GPLv3)"
],
keywords="me, myself, I",
packages=find_packages(exclude=("library", "bin")),
install_package_data=True,
install_requires=[
"ansible>=2.4",
"plumbum>=1.6.0"
],
entry_points={
'console_scripts': [
"mkgreg=mkgreg.bin.mkgreg:mkgreg",
"mkgreg-sudo=mkgreg.bin.mkgreg:mkgreg_sudo",
"mkgreg-openwrt=mkgreg.bin.mkgreg:mkgreg_openwrt",
"mkgreg-authkey=mkgreg.bin.mkgreg:mkgreg_authkey",
"mkgreg-dotfiles=mkgreg.bin.mkgreg:mkgreg_dotfiles"
]
}
)