From 117b1d4672efa9febf9c3539435be1da16bbf986 Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Mon, 5 Feb 2018 23:19:56 -0500 Subject: [PATCH] Modfied gitignore and setup.py --- .gitignore | 1 + setup.py | 10 +++------- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index d6be2a1..d919bb9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__ .ropeproject scrython.egg-info +dist diff --git a/setup.py b/setup.py index e9f6d29..fa13450 100644 --- a/setup.py +++ b/setup.py @@ -1,24 +1,20 @@ from setuptools import setup -requirements = [] -with open('requirements.txt') as f: - requirements = f.read().splitlines() - readme = '' with open('README.md') as f: readme = f.read() setup( name='scrython', - packages=['scrython'], + packages=['scrython', 'scrython.cards', 'scrython.rulings'], version='0.1.0', description='A wrapper for using the Scryfall API.', - long_description=readme + long_description=readme, url='https://github.com/NandaScott/Scrython', download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz', author='Nanda Scott', author_email='nanda1123@gmail.com', license='MIT', keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'], - install_requires=requirements + install_requires=['aiohttp', 'asyncio'] )