2018-02-06 02:45:57 +00:00
|
|
|
from distutils.core import setup
|
2018-01-11 01:14:33 +00:00
|
|
|
|
2018-02-06 02:45:57 +00:00
|
|
|
setup(
|
|
|
|
name='scrython',
|
|
|
|
packages=['scrython']
|
|
|
|
version='0.1.0',
|
|
|
|
description='A wrapper for using the Scryfall API.',
|
2018-01-11 01:14:33 +00:00
|
|
|
url='https://github.com/NandaScott/Scrython',
|
2018-02-06 02:45:57 +00:00
|
|
|
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
2018-01-11 01:14:33 +00:00
|
|
|
author='Nanda Scott',
|
|
|
|
license='MIT',
|
2018-02-06 02:45:57 +00:00
|
|
|
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper']
|
|
|
|
)
|