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)