-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (40 loc) · 1.43 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
#!/usr/bin/env python
from setuptools import setup
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except (IOError, OSError):
long_description = ""
setup(
name="xontrib-argcomplete",
version="0.3.4",
license="BSD",
author="anki-code",
author_email="[email protected]",
description="Argcomplete support for python and xonsh scripts in xonsh shell. ",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6",
install_requires=["xonsh >= 0.12.1"],
packages=["xontrib"],
package_dir={"xontrib": "xontrib"},
platforms="any",
url="https://github.com/anki-code/xontrib-argcomplete",
project_urls={
"Documentation": "https://github.com/anki-code/xontrib-argcomplete/blob/master/README.md",
"Code": "https://github.com/anki-code/xontrib-argcomplete",
"Issue tracker": "https://github.com/anki-code/xontrib-argcomplete/issues",
},
classifiers=[
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: System :: Networking",
"License :: OSI Approved :: BSD License",
],
)