mirror of
https://github.com/xxh/xxh
synced 2024-11-26 21:50:25 +00:00
Moved Python package
This commit is contained in:
parent
5897a0f0d6
commit
9c902a6733
9 changed files with 4 additions and 3 deletions
7
setup.py
7
setup.py
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue