mirror of
https://github.com/OpenJarbas/PySychonaut.git
synced 2024-11-26 05:09:28 +01:00
14 lines
319 B
Python
14 lines
319 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='py_erowid',
|
|
version='0.1',
|
|
packages=['pyerowid'],
|
|
url='https://github.com/JarbasAl/py_erowid',
|
|
license='MIT',
|
|
author='jarbasAI',
|
|
author_email='jarbasai@mailfence.com',
|
|
description='unnoficial erowid api',
|
|
install_requires=["lxml", "bs4"]
|
|
)
|