-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathsetup.py
51 lines (46 loc) · 1.47 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
#!/usr/bin/env python
"""
A CLI front-end to a running salt-api system
"""
import setuptools
with open("README.rst") as fh:
long_description = fh.read()
setup_kwargs = {
"name": "salt-pepper",
"description": __doc__.strip(),
"author": "Seth House",
"author_email": "[email protected]",
"url": "http://saltstack.com",
"long_description": long_description,
"long_description_content_type": "text/x-rst",
"use_scm_version": True,
"setup_requires": ["setuptools_scm"],
"classifiers": [
"Programming Language :: Python",
"Programming Language :: Cython",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
],
"packages": [
"pepper",
],
"extras_require": {
"kerberos": ["requests-gssapi>=1.1.0"],
},
"scripts": [
"scripts/pepper",
],
}
if __name__ == "__main__":
setuptools.setup(**setup_kwargs)