Merge branch 'master' into develop
This commit is contained in:
commit
d9589f7b87
|
@ -10,7 +10,9 @@ Since Scryfall's API is constantly changing, this library will also be changing.
|
||||||
Versions will be broken down as such:
|
Versions will be broken down as such:
|
||||||
|
|
||||||
0: Overall library version
|
0: Overall library version
|
||||||
|
|
||||||
0.x: Changes that will break previous functionality
|
0.x: Changes that will break previous functionality
|
||||||
|
|
||||||
0.x.x: Changes that Scryfall has made to break functionality.
|
0.x.x: Changes that Scryfall has made to break functionality.
|
||||||
|
|
||||||
It's important to keep up to date with library changes, since it relies on how Scryfall has updated it's own API. If they change something, my library will potentially break or be outdated until a fix is patched.
|
It's important to keep up to date with library changes, since it relies on how Scryfall has updated it's own API. If they change something, my library will potentially break or be outdated until a fix is patched.
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -6,8 +6,8 @@ with open('README.md') as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='scrython',
|
name='scrython',
|
||||||
packages=['scrython', 'scrython.cards', 'scrython.rulings'],
|
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
|
||||||
version='1.0.0',
|
version='1.1.0',
|
||||||
description='A wrapper for using the Scryfall API.',
|
description='A wrapper for using the Scryfall API.',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
url='https://github.com/NandaScott/Scrython',
|
url='https://github.com/NandaScott/Scrython',
|
||||||
|
|
Loading…
Reference in New Issue