forked from lockwooddev/python-wowapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 1.56 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
import codecs
from setuptools import setup
__version__ = '1.0'
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
install_requirements = [
'requests==2.11.1',
]
test_requirements = [
'tox==2.4.1',
'py==1.4.31',
'pyflakes==1.3.0',
'pytest==3.0.3',
'pytest-cache==1.0',
'pytest-flakes==1.0.1',
'pytest-pep8==1.0.6',
'mock==1.0.1',
'pep8==1.7.0',
'pytest-mock==1.2',
]
docs_requirements = [
'Sphinx==1.4.8',
]
setup(
name='python-wowapi',
version=__version__,
description='Python-wowapi is a client library for the World of Warcraft Community API.',
long_description=read('README.rst'),
author='Carlo Smouter',
author_email='[email protected]',
url='https://github.com/lockwooddev/python-wowapi',
install_requires=install_requirements,
extras_require={
'tests': test_requirements,
'docs': docs_requirements,
},
license='MIT',
keywords=['warcraft', 'api', 'wow', 'auctionhouse', 'community'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'wowapi',
'tests',
'docs',
],
)