-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
33 lines (31 loc) · 855 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
29
30
31
32
33
#!/usr/bin/env python
import setuptools
try:
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
except (IOError, OSError):
long_description = ''
setuptools.setup(
name='xontrib-rc-awesome',
version='0.0.2',
license='MIT',
author='anki-code',
author_email='no@no.no',
description="Awesome snippets of code for xonshrc in xonsh shell.",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
install_requires=[
'xonsh',
#'xontrib-prompt-bar',
#'xontrib-back2dir',
#'xontrib-sh',
],
extras_require={
"xxh": ["xxh-xxh"],
},
packages=['xontrib'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.py', '*.xsh']},
platforms='any',
)