Scrython/setup.py

17 lines
670 B
Python
Raw Normal View History

from setuptools import setup
setup(
name='scrython',
2018-10-28 15:41:56 +00:00
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology', 'scrython.bulk_data'],
2022-07-26 02:48:29 +00:00
version='1.11.0',
description='A wrapper for using the Scryfall API.',
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
2018-01-11 01:14:33 +00:00
url='https://github.com/NandaScott/Scrython',
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
2018-01-11 01:14:33 +00:00
author='Nanda Scott',
author_email='nanda1123@gmail.com',
2018-01-11 01:14:33 +00:00
license='MIT',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
install_requires=['aiohttp', 'asyncio']
)