-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (26 loc) · 840 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
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="xonsh-direnv",
version="1.6.5",
license="MIT",
url="https://github.com/74th/xonsh-direnv",
description="direnv support for the xonsh shell",
long_description=long_description,
author="74th",
author_email="[email protected]",
packages=['xontrib'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.xsh']},
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
]
)