forked from NandaScott/Scrython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 670 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name='scrython',
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology', 'scrython.bulk_data'],
version='1.11.0',
description='A wrapper for using the Scryfall API.',
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
url='https://github.com/NandaScott/Scrython',
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
author='Nanda Scott',
author_email='nanda1123@gmail.com',
license='MIT',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
install_requires=['aiohttp', 'asyncio']
)