-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 818 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
"A couple small utiloities"
from setuptools import setup
setup(
name="xontrib-xonsh_shells",
version="0.1.1",
url="https://github.com/BrianGallew/xonsh_shells",
license="MIT",
author="Brian Gallew",
author_email="[email protected]",
description="Various extensions related to AWS and multiple shell coordination. Today.",
packages=["xontrib"],
package_dir={"xontrib": "xontrib"},
package_data={"xontrib": ["*.xsh"]},
platforms="any",
classifiers=[
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Desktop Environment",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
],
zip_safe=False,
)