-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, | ||
) |