Modified and created files for uploading to PyPI.
This commit is contained in:
parent
fdce44e1b6
commit
b1afa6a302
15
setup.py
15
setup.py
|
@ -1,10 +1,13 @@
|
||||||
from setuptools import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='scrython',
|
setup(
|
||||||
version='0.0.1',
|
name='scrython',
|
||||||
description='A library to interact with the Scryfall API.',
|
packages=['scrython']
|
||||||
|
version='0.1.0',
|
||||||
|
description='A wrapper for using the Scryfall API.',
|
||||||
url='https://github.com/NandaScott/Scrython',
|
url='https://github.com/NandaScott/Scrython',
|
||||||
|
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
||||||
author='Nanda Scott',
|
author='Nanda Scott',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
packages=['cards'],
|
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper']
|
||||||
zip_safe=False)
|
)
|
||||||
|
|
Loading…
Reference in New Issue