Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
osama-ata authored Nov 6, 2024
1 parent 86b589c commit 2579b2e
Showing 1 changed file with 14 additions and 27 deletions.
41 changes: 14 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,37 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]

setup(
name="siwar-api",
version="0.1.0",
author="Osama Ata",
author_email="[email protected]", # Replace with your email if different
author_email="[email protected]",
description="Python wrapper for the Siwar Arabic Lexicon API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/osama-ata/siwar-api",
url="https://github.com/osamata/siwar-api",
project_urls={
"Bug Tracker": "https://github.com/osama-ata/siwar-api/issues",
"Documentation": "https://github.com/osama-ata/siwar-api#readme",
"Source Code": "https://github.com/osama-ata/siwar-api",
"Bug Tracker": "https://github.com/osamata/siwar-api/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: Arabic",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.7",
install_requires=[
"requests>=2.25.0",
],
extras_require={
'dev': [
'pytest>=6.0',
'pytest-cov>=2.0',
'flake8>=3.9',
'mypy>=0.910',
'black>=21.0',
'isort>=5.0',
'sphinx>=4.0',
'sphinx-rtd-theme>=0.5',
],
},
python_requires=">=3.6",
install_requires=requirements,
include_package_data=True,
)

0 comments on commit 2579b2e

Please sign in to comment.