Skip to content

Commit

Permalink
Merge pull request #31 from stephantul/25-switch-to-pyprojecttoml
Browse files Browse the repository at this point in the history
25 switch to pyprojecttoml
  • Loading branch information
stephantul authored Apr 30, 2023
2 parents 33e3510 + 7a23f50 commit b509b1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
3 changes: 2 additions & 1 deletion reach/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""A package for reading and manipulating word embeddings."""
from __future__ import absolute_import
from reach.reach import Reach, normalize

try:
Expand All @@ -8,3 +7,5 @@
__all__ = ["Reach", "normalize", "AutoReach"]
except ImportError:
__all__ = ["Reach", "normalize"]

__version__ = "4.0.2"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="reach",
version="4.0.1",
version="4.0.2", # noqa
description="A light-weight package for working with pre-trained word embeddings",
author="Stéphan Tulkens",
author_email="stephantul@gmail.com",
Expand All @@ -29,8 +29,8 @@
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="word vectors natural language processing",
keywords=["word vectors", "natural language processing", "embeddings"],
zip_safe=True,
long_description=Path("README.md").read_text(),
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
)

0 comments on commit b509b1e

Please sign in to comment.