Skip to content

Commit

Permalink
updated setup.py and pushed v.0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wjbmattingly committed Apr 10, 2024
1 parent 8fe9dd1 commit 29779d3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
long_description = f.read()

setup(
name='gliner-spacy', # Your package name
version='0.0.3', # Initial version
author='William J. B. Mattingly', # Your name
description='A SpaCy wrapper for the GLiNER model for enhanced Named Entity Recognition capabilities', # Short description
name='gliner-spacy',
version='0.0.4',
author='William J. B. Mattingly',
description='A SpaCy wrapper for the GLiNER model for enhanced Named Entity Recognition capabilities',
long_description=long_description,
long_description_content_type='text/markdown', # Ensures correct rendering on PyPI
url='https://github.com/theirstory/gliner-spacy', # Your repository URL
long_description_content_type='text/markdown',
url='https://github.com/theirstory/gliner-spacy',
packages=find_packages(),
install_requires=[
'spacy',
'gliner', # Assuming 'gliner' is the correct package name on PyPI
'gliner',
],
classifiers=[
'Development Status :: 3 - Alpha',
Expand All @@ -28,5 +28,5 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.7',
python_requires='>=3.7,<=3.10',
)

0 comments on commit 29779d3

Please sign in to comment.