Scrython/setup.py

14 lines
392 B
Python
Raw Normal View History

from distutils.core import setup
2018-01-11 01:14:33 +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',
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',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper']
)