xxh/setup.py

41 lines
1.3 KiB
Python
Raw Normal View History

2020-02-09 00:57:47 +03:00
import setuptools
2020-03-14 10:51:21 +03:00
from xxh_xxh.settings import global_settings
2020-02-09 00:57:47 +03:00
2020-03-14 11:12:02 +03:00
with open("README.md", "r") as fh:
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-02-09 00:57:47 +03:00
version=global_settings['XXH_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',
2020-03-13 21:10:27 +03:00
scripts=['xxh','xxhp','xxh.zsh','xxh.xsh'],
2020-03-17 15:28:27 +03:00
package_data={'xxh_xxh':['*.py', '*.sh', '*.xxhc']},
2020-02-09 00:57:47 +03:00
packages=setuptools.find_packages(),
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
)