Scrython/setup.py

14 lines
392 B
Python

from distutils.core import setup
setup(
name='scrython',
packages=['scrython']
version='0.1.0',
description='A wrapper for using the Scryfall API.',
url='https://github.com/NandaScott/Scrython',
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
author='Nanda Scott',
license='MIT',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper']
)