-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·41 lines (36 loc) · 1.24 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
#!/usr/bin/env python
import setuptools
from distutils.core import setup
execfile('gsh/version.py')
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
kwargs = {
"name": "gsh",
"version": str(__version__),
"packages": ["gsh"],
"package_data": {"gsh": [
"plugins/loaders/*.py",
"plugins/hooks/*.py",
"plugins/executors/*.py",
]},
"scripts": ["bin/gsh"],
"description": "Pluggable Distributed SSH Command Executer.",
# PyPi, despite not parsing markdown, will prefer the README.md to the
# standard README. Explicitly read it here.
"long_description": open("README").read(),
"author": "Gary M. Josack",
"maintainer": "Gary M. Josack",
"author_email": "[email protected]",
"maintainer_email": "[email protected]",
"license": "MIT",
"install_requires": required,
"url": "https://github.com/gmjosack/gsh",
"download_url": "https://github.com/gmjosack/gsh/archive/master.tar.gz",
"classifiers": [
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
}
setup(**kwargs)