From 0c0dd3b6e772aa0b196b12ee1776e6aaf07c440a Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Wed, 10 Jan 2018 20:14:33 -0500 Subject: [PATCH] Added setup.py and modified gitignore --- .gitignore | 1 + setup.py | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index b65deb3..d6be2a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ __pycache__ .ropeproject +scrython.egg-info diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a5c5a18 --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup(name='scrython', + version='0.0.1', + description='A library to interact with the Scryfall API.', + url='https://github.com/NandaScott/Scrython', + author='Nanda Scott', + license='MIT', + packages=['cards'], + zip_safe=False)