-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (26 loc) · 1013 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
from setuptools import setup
setup(
name="completion_utils",
version="0.0.2",
author="Carvell Scott",
author_email="[email protected]",
keywords=["bash completion", "complete", "autocomplete", "auto-complete"],
py_modules=["completion_utils"],
url="https://github.com/CarvellScott/completion_utils",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
description=(
"A set of functions intended to make writing shell completion "
"functions lot easier by letting you write them via python."
),
include_package_data=True,
long_description=open("long_description.md").read(),
long_description_content_type="text/markdown"
)