-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 970 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='ScryfallCardGolf',
version='0.1',
author='Zach Halpern',
author_email='zahalpern+pypi@gmail.com',
description='Facilitate the Scryfall Card Golf games!',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/zeldazach/scryfallcardgolf',
packages=setuptools.find_packages(),
license='GPL-3.0',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
],
keywords='Magic: The Gathering, MTG, JSON, Card Games, Collectible, Trading Cards',
include_package_data=True,
install_requires=[
'requests',
'pillow',
'TwitterAPI',
],
)