-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 971 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 971 Bytes
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
31
32
33
34
35
36
37
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='DAPIWrap',
version='0.3.0',
author='Alex Crawford',
author_email='kebert406@yahoo.com',
packages=['dapiwrap'],
scripts=[],
url='https://github.com/Trebek/DAPIWrap',
license='LICENSE.txt',
description='A wrapper for the Doomworld /idgames archive API.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet'
],
keywords=(
'Doomworld idgames archive API wrapper interface'
'Doom Heretic Hexen Strife game'
),
install_requires=[
"requests"
],
include_package_data=True,
zip_safe=False
)