mirror of
https://github.com/OpenJarbas/PySychonaut.git
synced 2024-11-22 03:09:25 +01:00
14 lines
400 B
Python
14 lines
400 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='PySychonaut',
|
|
version='0.6.0',
|
|
packages=['pysychonaut'],
|
|
url='https://github.com/OpenJarbas/PySychonaut',
|
|
license='apache2.0',
|
|
author='jarbasAI',
|
|
author_email='jarbasai@mailfence.com',
|
|
description='unnoficial erowid, psychonaut wiki and ask_the_caterpillar apis',
|
|
install_requires=["bs4", "requests", "requests_cache"]
|
|
)
|