Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anki-code committed Apr 6, 2024
1 parent c732155 commit 56b4366
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import setuptools
from xxh.xxh_xxh import __version__

with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()

setuptools.setup(
name="xxh-xxh",
version=__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_xxh/xxh.zsh', 'xxh/xxh_xxh/xxh.xsh', 'xxh/xxh_xxh/xxh.bash'],
package_data={'xxh_xxh': ['*.py', '*.xxhc', 'xxh.*']},
packages=['xxh_xxh'],
package_dir={'xxh_xxh': 'xxh/xxh_xxh'},
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="[email protected]"
)

0 comments on commit 56b4366

Please sign in to comment.