forked from ngerakines/battlenet
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (27 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
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
DESCRIPTION = "Python Library for Blizzard's Community Platform API"
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.3.0'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(name='battlenet',
version=VERSION,
packages=find_packages(),
author='Stanislav Vishnevskiy',
author_email='[email protected]',
url='https://github.com/vishnevskiy/battlenet',
license='MIT',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
test_suite='tests',
)