forked from jameserrico/python-gamesdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 689 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from distutils.core import setup
setup(name='gamesdb',
version='0.1.1',
description='Python client for thegamesdb.net API for retrieving video game data.',
author='James Errico',
author_email='james.errico@gmail.com',
url='https://github.com/jameserrico/python-gamesdb',
py_modules=['gamesdb.api', 'gamesdb.urlutils.urlencode_no_plus'],
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)