-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·38 lines (33 loc) · 1020 Bytes
/
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
#! /usr/bin/env python
import sys
try:
from setuptools import setup
HAVE_SETUPTOOLS = True
except ImportError:
from distutils.core import setup
HAVE_SETUPTOOLS = False
VERSION = '0.2.8'
setup_kwargs = {
"version": VERSION,
"description": ('Python interface for bash completion'),
"license": 'BSD 3-clause',
"author": 'The xonsh developers',
"author_email": '[email protected]',
"url": 'https://github.com/xonsh/py-bash-completion',
"download_url": "https://github.com/xonsh/py-bash-completion/zipball/" + VERSION,
"classifiers": [
"License :: OSI Approved",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Utilities",
],
"zip_safe": False,
"data_files": [("", ['LICENSE', 'README.rst']),],
}
if __name__ == '__main__':
setup(
name='bash_completion',
py_modules=['bash_completion'],
long_description=open('README.rst').read(),
**setup_kwargs
)