From b1afa6a30283f957d83d7f03d6704a32b7ab9eab Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Mon, 5 Feb 2018 21:45:57 -0500 Subject: [PATCH] Modified and created files for uploading to PyPI. --- setup.cfg | 2 ++ setup.py | 15 +++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index a5c5a18..4c1ecc5 100644 --- a/setup.py +++ b/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'] + )