FAAPI/setup.py
Thomas Wade a70f181673 Add function to get a submission
I shouldn't have to use the Submission class to do anything outside of the library.
2020-04-22 04:00:28 +09:30

20 lines
481 B
Python

from setuptools import setup, find_packages
setup(
name='FAAPI',
version='0.4.0',
packages=find_packages(),
url='https://tem.party/gitea/tom/FAAPI',
license='WTFPL',
author='Thomas Wade',
author_email='tom@tem.party',
description='A scraper-based FurAffinity API written in Python',
install_requires=[
'requests~=2.23.0',
'bs4~=0.0.1',
'beautifulsoup4~=4.9.0',
'selenium~=3.141.0',
'lxml~=4.5.0'
]
)