xxh/setup.py

42 lines
1.3 KiB
Python
Raw Normal View History

2020-02-09 00:57:47 +03:00
import setuptools
2021-03-15 07:44:03 +03:00
from xxh.xxh_xxh import __version__
2020-02-09 00:57:47 +03:00
2020-05-15 15:11:36 +03:00
with open("README.md", "r", encoding="utf8") as fh:
2020-03-14 11:12:02 +03:00
long_description = fh.read()
2020-02-09 00:57:47 +03:00
setuptools.setup(
2020-03-14 10:51:21 +03:00
name="xxh-xxh",
2020-05-10 23:39:17 +03:00
version=__version__,
2020-03-14 11:12:02 +03: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 12:42:43 +03:00
url="https://github.com/xxh/xxh",
2020-02-16 15:01:55 +03:00
project_urls={
2020-03-04 12:42:43 +03: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 15:01:55 +03:00
},
2020-02-09 00:57:47 +03:00
python_requires='>=3.6',
2020-02-16 15:01:55 +03:00
install_requires=[
2020-03-06 16:58:20 +03:00
'pexpect >= 4.8.0',
'pyyaml'
2020-02-16 15:01:55 +03:00
],
2020-02-09 00:57:47 +03:00
platforms='Unix-like',
2021-03-15 07:44:03 +03:00
scripts=['xxh/xxh', 'xxh/xxh_xxh/xxh.zsh', 'xxh/xxh_xxh/xxh.xsh', 'xxh/xxh_xxh/xxh.bash'],
2020-03-27 21:22:27 +03:00
package_data={'xxh_xxh': ['*.py', '*.xxhc', 'xxh.*']},
2021-03-15 07:44:03 +03:00
packages=['xxh_xxh'],
package_dir={'xxh_xxh': 'xxh/xxh_xxh'},
2020-02-16 15:01:55 +03: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-09 01:20:07 +03:00
license="BSD",
2020-03-04 12:42:43 +03:00
author="xxh",
2020-02-09 00:57:47 +03:00
author_email="author@example.com"
2020-03-13 21:10:27 +03:00
)