mirror of
https://github.com/OpenJarbas/PySychonaut.git
synced 2024-11-22 19:29:24 +01:00
14 lines
370 B
Python
14 lines
370 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='PySychonaut',
|
|
version='0.3.1',
|
|
packages=['pysychonaut'],
|
|
url='https://github.com/JarbasAl/PySychonaut',
|
|
license='MIT',
|
|
author='jarbasAI',
|
|
author_email='jarbasai@mailfence.com',
|
|
description='unnoficial erowid, psychonaut wiki and ask_the_caterpillar apis',
|
|
install_requires=["lxml", "bs4"]
|
|
)
|