Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include LICENSE
include README.md
include src/*.h
include src/*.cc
include src/*.cpp
include src/*.pyx
include *requirements.txt
recursive-include src *.h
recursive-include src *.cc
recursive-include src *.cpp
recursive-include src *.pyx
2 changes: 1 addition & 1 deletion pip-freeze.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ipdb==0.13.9
ipython==7.30.1
jedi==0.18.1
matplotlib-inline==0.1.3
-e git+https://github.com/escherba/python-metrohash@c0ccb6df1b98cd3a8cbc940492bd4dadec18428f#egg=metrohash
-e git+https://github.com/escherba/python-metrohash@ea83865358849218699802b44060296d89e2ab10#egg=metrohash
numpy==1.21.5
packaging==21.3
parso==0.8.3
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,12 @@ requires = [
"wheel",
]

[tool.pytest.ini_options]
addopts = "-s --doctest-modules"
testpaths = [
"src",
"tests",
]

[tool.cibuildwheel]
test-requires = "pytest"
12 changes: 0 additions & 12 deletions setup.cfg

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def is_pure(self):
),
]

VERSION = "0.2.0"
VERSION = "0.2.0.post0"
URL = "https://github.com/escherba/python-metrohash"


Expand Down Expand Up @@ -128,7 +128,7 @@ def get_long_description(relpath, encoding="utf-8"):
cmdclass=CMDCLASS,
ext_modules=EXT_MODULES,
package_dir={"": "src"},
keywords=["hash", "hashing", "metrohash"],
keywords=["hash", "hashing", "metrohash", "cython"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down