2018-04-18 17:59:46 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2018-05-01 22:47:26 +02:00
|
|
|
name='PySychonaut',
|
2019-12-13 01:50:57 +01:00
|
|
|
version='0.5.1',
|
2018-05-01 22:47:26 +02:00
|
|
|
packages=['pysychonaut'],
|
2019-12-13 01:50:57 +01:00
|
|
|
url='https://github.com/OpenJarbas/PySychonaut',
|
|
|
|
license='apache2.0',
|
2018-04-18 17:59:46 +02:00
|
|
|
author='jarbasAI',
|
|
|
|
author_email='jarbasai@mailfence.com',
|
2018-05-01 22:47:26 +02:00
|
|
|
description='unnoficial erowid, psychonaut wiki and ask_the_caterpillar apis',
|
2021-05-09 13:12:35 +02:00
|
|
|
install_requires=["lxml", "beautifulsoup4", "requests"]
|
2018-04-18 17:59:46 +02:00
|
|
|
)
|