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',
|
||||
version='0.0.1',
|
||||
description='A library to interact with the Scryfall API.',
|
||||
setup(
|
||||
name='scrython',
|
||||
packages=['scrython']
|
||||
version='0.1.0',
|
||||
description='A wrapper for using the Scryfall API.',
|
||||
url='https://github.com/NandaScott/Scrython',
|
||||
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
||||
author='Nanda Scott',
|
||||
license='MIT',
|
||||
packages=['cards'],
|
||||
zip_safe=False)
|
||||
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper']
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue