Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikuniii committed Nov 9, 2022
1 parent c600b10 commit b5d2f8d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# ignore file
*.pyc
*.pyo
*.mp4
*.avi
*.mkv

# ignore folder
__pycache__/
build/
dist/
pynime.egg-info/
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages

VERSION = '0.1.37'
DESCRIPTION = 'Yet simple API wrapper for GoGoAnime'
LONG_DESCRIPTION = 'PyNime is a (simple) straightforward Python3 script to scrape GoGoAnime using Python. The project is a work in progress, not finished yet. But, the code works well, feel free to take part of the code.'

# Setting up
setup(
name="pynime",
version=VERSION,
author="Yoshikuni",
author_email="yoshiumi.kuni@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['beautifulsoup4', 'requests', 'pycryptodome', 'm3u8'],

keywords=['python', 'downloader', 'anime', 'webscrapping', 'beautifulsoup4', 'gogoanime', 'gogoanime-scraper'],
classifiers= [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
]
)

0 comments on commit b5d2f8d

Please sign in to comment.