-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 934 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
from setuptools import setup
long_description = open('README.md').read()
setup(
name="xontrib-xlsd",
version="0.1.7",
license="GPLv3",
url="https://github.com/cafehaine/xontrib-xlsd",
description="An improved ls for xonsh, inspired by lsd",
long_description=long_description,
long_description_content_type="text/markdown",
author="CaféHaine",
author_email="[email protected]",
packages=['xontrib', 'xlsd'],
package_dir={'xontrib': 'xontrib', 'xlsd': 'xlsd'},
package_data={'xontrib': ['*.xsh'], 'xlsd': ['*.py']},
install_requires=['xonsh>=0.9.26', 'wcwidth>=0.2.5'],
python_requires='>=3.9',
zip_safe=False,
classifiers=[
"Environment :: Console",
"Environment :: Plugins",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3"
]
)