-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 1.01 KB
/
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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name="gamejoltapi",
version="0.0.3",
author="Joel Gomes da Silva",
author_email="[email protected]",
description="Single threaded Python wrapper for the Game Jolt API running through HTTP requests",
license="MIT",
keywords="game jolt gamedev api wrapper interface gamejolt gamejoltapi",
url="https://github.com/bgempire/gamejoltapi",
long_description_content_type = "text/markdown",
long_description=readme,
py_modules=['gamejoltapi'],
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries"])