Modfied gitignore and setup.py
This commit is contained in:
parent
78604b4099
commit
117b1d4672
|
@ -1,3 +1,4 @@
|
||||||
__pycache__
|
__pycache__
|
||||||
.ropeproject
|
.ropeproject
|
||||||
scrython.egg-info
|
scrython.egg-info
|
||||||
|
dist
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -1,24 +1,20 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
requirements = []
|
|
||||||
with open('requirements.txt') as f:
|
|
||||||
requirements = f.read().splitlines()
|
|
||||||
|
|
||||||
readme = ''
|
readme = ''
|
||||||
with open('README.md') as f:
|
with open('README.md') as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='scrython',
|
name='scrython',
|
||||||
packages=['scrython'],
|
packages=['scrython', 'scrython.cards', 'scrython.rulings'],
|
||||||
version='0.1.0',
|
version='0.1.0',
|
||||||
description='A wrapper for using the Scryfall API.',
|
description='A wrapper for using the Scryfall API.',
|
||||||
long_description=readme
|
long_description=readme,
|
||||||
url='https://github.com/NandaScott/Scrython',
|
url='https://github.com/NandaScott/Scrython',
|
||||||
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
||||||
author='Nanda Scott',
|
author='Nanda Scott',
|
||||||
author_email='nanda1123@gmail.com',
|
author_email='nanda1123@gmail.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
|
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
|
||||||
install_requires=requirements
|
install_requires=['aiohttp', 'asyncio']
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue