-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
76 lines (66 loc) · 1.8 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
67
68
69
70
71
72
73
74
75
76
import codecs
import os
from setuptools import find_packages, setup
__version__ = '4.0.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.23.0',
]
test_requirements = [
'pytest>=5.0,<6.0',
'pytest-flake8',
'pytest-isort==1.3.0',
'pytest-cov>=2.7,<3.0',
'pytest-mock==1.10.4',
]
docs_requirements = [
'pydoc-markdown==2.0.5',
]
setup(
name='python-wowapi',
version=__version__,
description=(
"Python-wowapi is a client library for the "
"World of Warcraft, Data and Profile API's."
),
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Carlo Smouter',
author_email='[email protected]',
url='https://github.com/lockwooddev/python-wowapi',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
install_requires=install_requirements,
extras_require={
'tests': test_requirements,
'docs': docs_requirements,
},
license='MIT',
keywords=[
'warcraft',
'api',
'wow',
'auctionhouse',
'community',
'game',
'data',
'profile',
'blizzard',
'classic',
'wow',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
],
)