2018-02-06 03:32:12 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
readme = ''
|
|
|
|
with open('README.md') as f:
|
|
|
|
readme = f.read()
|
2018-01-11 01:14:33 +00:00
|
|
|
|
2018-02-06 02:45:57 +00:00
|
|
|
setup(
|
|
|
|
name='scrython',
|
2018-02-20 15:42:25 +00:00
|
|
|
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
|
2018-04-14 18:24:02 +00:00
|
|
|
version='1.4.1',
|
2018-02-06 02:45:57 +00:00
|
|
|
description='A wrapper for using the Scryfall API.',
|
2018-02-06 04:19:56 +00:00
|
|
|
long_description=readme,
|
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',
|
2018-02-06 03:32:12 +00:00
|
|
|
author_email='nanda1123@gmail.com',
|
2018-01-11 01:14:33 +00:00
|
|
|
license='MIT',
|
2018-02-06 03:32:12 +00:00
|
|
|
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
|
2018-03-01 04:20:28 +00:00
|
|
|
install_requires=['aiohttp', 'asyncio']
|
2018-02-06 02:45:57 +00:00
|
|
|
)
|