2020-02-08 21:57:47 +00:00
|
|
|
import setuptools
|
2020-03-27 16:58:28 +00:00
|
|
|
from xxh_xxh.xxh import XXH_VERSION
|
2020-02-08 21:57:47 +00:00
|
|
|
|
2020-03-14 08:12:02 +00:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2020-02-08 21:57:47 +00:00
|
|
|
setuptools.setup(
|
2020-03-14 07:51:21 +00:00
|
|
|
name="xxh-xxh",
|
2020-03-27 16:58:28 +00:00
|
|
|
version=XXH_VERSION,
|
2020-03-14 08:12:02 +00:00
|
|
|
description="Bring your favorite shell wherever you go through the ssh",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
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-03-06 13:58:20 +00:00
|
|
|
'pexpect >= 4.8.0',
|
|
|
|
'pyyaml'
|
2020-02-16 12:01:55 +00:00
|
|
|
],
|
2020-02-08 21:57:47 +00:00
|
|
|
platforms='Unix-like',
|
2020-03-27 17:00:42 +00:00
|
|
|
scripts=['xxh', 'xxh_xxh/xxh.zsh', 'xxh_xxh/xxh.xsh', 'xxh_xxh/xxh.bash'],
|
2020-03-27 18:22:27 +00:00
|
|
|
package_data={'xxh_xxh': ['*.py', '*.xxhc', 'xxh.*']},
|
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"
|
2020-03-13 18:10:27 +00:00
|
|
|
)
|