Modified and created files for uploading to PyPI.

This commit is contained in:
Nanda Scott 2018-02-05 21:45:57 -05:00
parent fdce44e1b6
commit b1afa6a302
2 changed files with 11 additions and 6 deletions

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

View File

@ -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']
)