-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (21 loc) · 888 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
#!/usr/bin/env python
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(name="gamejolt",
version="1",
author="Benjamin Moran",
author_email="[email protected]",
description="A module for interfacing with the GameJolt API",
license="MIT",
keywords="game gamedev gamejolt",
url="https://github.com/benmoran56/gamejolt",
long_description=readme,
py_modules=['gamejolt'],
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"])