xxh/setup.py

35 lines
1.1 KiB
Python
Raw Normal View History

2020-02-08 21:57:47 +00:00
import setuptools
from xonssh_xxh.settings import global_settings
setuptools.setup(
2020-02-16 12:01:55 +00:00
name="xonssh-xxh",
2020-02-08 21:57:47 +00:00
version=global_settings['XXH_VERSION'],
description="xxh is for using portable xonsh shell wherever you go through the ssh",
2020-03-04 09:42:43 +00:00
url="https://github.com/xxh/xxh",
2020-02-16 12:01:55 +00:00
project_urls={
2020-03-04 09:42:43 +00:00
"Documentation": "https://github.com/xxh/xxh/blob/master/README.md",
"Code": "https://github.com/xxh/xxh",
"Issue tracker": "https://github.com/xxh/xxh/issues",
2020-02-16 12:01:55 +00:00
},
2020-02-08 21:57:47 +00:00
python_requires='>=3.6',
2020-02-16 12:01:55 +00:00
install_requires=[
2020-02-26 07:58:17 +00:00
'xonsh >= 0.9.13',
'pexpect >= 4.8.0'
2020-02-16 12:01:55 +00:00
],
2020-02-08 21:57:47 +00:00
platforms='Unix-like',
scripts=['xxh'],
2020-02-12 10:29:22 +00:00
package_data={'xonssh_xxh':['*.xsh', '*.sh']},
2020-02-08 21:57:47 +00:00
packages=setuptools.find_packages(),
2020-02-16 12:01:55 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: System :: Networking",
"License :: OSI Approved :: BSD License"
],
2020-02-08 22:20:07 +00:00
license="BSD",
2020-03-04 09:42:43 +00:00
author="xxh",
2020-02-08 21:57:47 +00:00
author_email="author@example.com"
)