Incrementing version to fix issues with downloading via pip
This commit is contained in:
parent
adfc1c3d4b
commit
f6112c5c1f
8
setup.py
8
setup.py
|
@ -1,15 +1,11 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
readme = ''
|
|
||||||
with open('README.md') as f:
|
|
||||||
readme = f.read()
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='scrython',
|
name='scrython',
|
||||||
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
|
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
|
||||||
version='1.4.1',
|
version='1.4.2',
|
||||||
description='A wrapper for using the Scryfall API.',
|
description='A wrapper for using the Scryfall API.',
|
||||||
long_description=readme,
|
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
|
||||||
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',
|
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
||||||
author='Nanda Scott',
|
author='Nanda Scott',
|
||||||
|
|
Loading…
Reference in New Issue