xxh/setup.py
2020-03-22 12:26:10 +03:00

40 lines
1.3 KiB
Python

import setuptools
from xxh_xxh.settings import global_settings
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="xxh-xxh",
version=global_settings['XXH_VERSION'],
description="Bring your favorite shell wherever you go through the ssh",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/xxh/xxh",
project_urls={
"Documentation": "https://github.com/xxh/xxh/blob/master/README.md",
"Code": "https://github.com/xxh/xxh",
"Issue tracker": "https://github.com/xxh/xxh/issues",
},
python_requires='>=3.6',
install_requires=[
'pexpect >= 4.8.0',
'pyyaml'
],
platforms='Unix-like',
scripts=['xxh', 'xxh_xxh/xxh.zsh', 'xxh_xxh/xxh.xsh'],
package_data={'xxh_xxh': ['*.py', '*.sh', '*.xxhc', 'xxh.*']},
packages=setuptools.find_packages(),
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"
],
license="BSD",
author="xxh",
author_email="author@example.com"
)