-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (41 loc) · 1.47 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
43
#!/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-pipeliner',
version='0.5.0',
license='BSD',
author='anki',
author_email='[email protected]',
description="Easily process the lines using pipes in xonsh.",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
install_requires=['xonsh', 'six'],
packages=['xontrib.pipeliner', 'xontrib_pipeliner_asttokens'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.py']},
platforms='any',
url='https://github.com/anki-code/xontrib-pipeliner',
project_urls={
"Documentation": "https://github.com/anki-code/xontrib-pipeliner/blob/master/README.md",
"Code": "https://github.com/anki-code/xontrib-pipeliner",
"Issue tracker": "https://github.com/anki-code/xontrib-pipeliner/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"
]
)