Added setup.py and modified gitignore

This commit is contained in:
Nanda Scott 2018-01-10 20:14:33 -05:00
parent 9c28e1396c
commit 0c0dd3b6e7
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
__pycache__
.ropeproject
scrython.egg-info

10
setup.py Normal file
View File

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