11 lines
256 B
Python
11 lines
256 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='scrython',
|
||
|
version='0.0.1',
|
||
|
description='A library to interact with the Scryfall API.',
|
||
|
url='https://github.com/NandaScott/Scrython',
|
||
|
author='Nanda Scott',
|
||
|
license='MIT',
|
||
|
packages=['cards'],
|
||
|
zip_safe=False)
|