-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
3afe160
commit 045f0cd
Showing
4 changed files
with
79 additions
and
47 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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "animeworld" | ||
dynamic = ["version"] | ||
description = "AnimeWorld UNOFFICIAL API" | ||
dependencies = [ | ||
"httpx", | ||
"httpx[http2]", | ||
"youtube_dl", | ||
"beautifulsoup4" | ||
] | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
requires-python = ">= 3.8" | ||
license = {file = "LICENSE"} | ||
keywords = ["anime", "animeworld", "animeworld-api", "api"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Internet :: WWW/HTTP :: Indexing/Search", | ||
"Topic :: Software Development :: Libraries", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://mainkronos.github.io/AnimeWorld-API/" | ||
Documentation = "https://mainkronos.github.io/AnimeWorld-API/" | ||
Repository = "https://github.com/MainKronos/AnimeWorld-API.git" | ||
Issues = "https://github.com/MainKronos/AnimeWorld-API/issues" |
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 |
---|---|---|
@@ -1,24 +1,6 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
import os | ||
|
||
setuptools.setup( | ||
name="animeworld", | ||
version="1.6.5", | ||
author="MainKronos", | ||
description="AnimeWorld UNOFFICIAL API", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://mainkronos.github.io/AnimeWorld-API/", | ||
packages=setuptools.find_packages(), | ||
install_requires=['httpx', 'httpx[http2]', 'youtube_dl', 'beautifulsoup4'], | ||
license='MIT', | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Utilities", | ||
], | ||
python_requires='>= 3.7', | ||
version=os.environ["RELEASE_VERSION"] | ||
) |