xxh/setup.py

42 lines
1.3 KiB
Python
Raw Normal View History

2020-02-08 21:57:47 +00:00
import setuptools
2021-03-15 04:44:03 +00:00
from xxh.xxh_xxh import __version__
2020-02-08 21:57:47 +00:00
2020-05-15 12:11:36 +00:00
with open("README.md", "r", encoding="utf8") as fh:
2020-03-14 08:12:02 +00:00
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-05-10 20:39:17 +00:00
version=__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',
2021-03-15 04:44:03 +00:00
scripts=['xxh/xxh', 'xxh/xxh_xxh/xxh.zsh', 'xxh/xxh_xxh/xxh.xsh', 'xxh/xxh_xxh/xxh.bash'],
2020-03-27 18:22:27 +00:00
package_data={'xxh_xxh': ['*.py', '*.xxhc', 'xxh.*']},
2021-03-15 04:44:03 +00:00
packages=['xxh_xxh'],
package_dir={'xxh_xxh': 'xxh/xxh_xxh'},
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
)