Moved Python package

This commit is contained in:
a 2021-03-15 07:44:03 +03:00
parent 5897a0f0d6
commit 9c902a6733
9 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import setuptools
from xxh_xxh import __version__
from xxh.xxh_xxh import __version__
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
@ -22,9 +22,10 @@ setuptools.setup(
'pyyaml'
],
platforms='Unix-like',
scripts=['xxh', 'xxh_xxh/xxh.zsh', 'xxh_xxh/xxh.xsh', 'xxh_xxh/xxh.bash'],
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=setuptools.find_packages(),
packages=['xxh_xxh'],
package_dir={'xxh_xxh': 'xxh/xxh_xxh'},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",

View file