-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (40 loc) · 1.39 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-sh',
version='0.3.1',
license='BSD',
author='anki',
author_email='author@example.com',
description="Paste and run commands from bash, zsh, fish, tcsh, pwsh, cmd in xonsh shell.",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
packages=['xontrib'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.py']},
platforms='any',
url='https://github.com/anki-code/xontrib-sh',
project_urls={
"Documentation": "https://github.com/anki-code/xontrib-sh/blob/master/README.md",
"Code": "https://github.com/anki-code/xontrib-sh",
"Issue tracker": "https://github.com/anki-code/xontrib-sh/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"
]
)