PySychonaut/setup.py

14 lines
368 B
Python
Raw Normal View History

2018-04-18 17:59:46 +02:00
from setuptools import setup
setup(
name='PySychonaut',
2018-05-02 07:42:36 +02:00
version='0.4',
packages=['pysychonaut'],
url='https://github.com/JarbasAl/PySychonaut',
2018-04-18 17:59:46 +02:00
license='MIT',
author='jarbasAI',
author_email='jarbasai@mailfence.com',
description='unnoficial erowid, psychonaut wiki and ask_the_caterpillar apis',
2018-04-18 17:59:46 +02:00
install_requires=["lxml", "bs4"]
)