forked from alfredocdmiranda/igdb-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 643 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(
name = 'igdb_api_python',
packages = ['igdb_api_python'], # this must be the same as the name above
version = '0.800',
description = 'Python wrapper for IGDB.com API',
author = 'Sander Brauwers',
author_email = 'sander.brauwers@igdb.com',
url = 'https://github.com/igdb/igdb_api_python', # use the URL to the github repo
download_url = 'https://github.com/igdb/igdb_api_python/releases/tag/0.800.tar.gz', # I'll explain this in a second
keywords = ['igdb', 'videogame', 'api','database'], # arbitrary keywords
classifiers = [],
install_requires=[
'requests>=2.13.0',
],
)