-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (37 loc) · 1.34 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
import os
from distutils.core import setup
from setuptools import find_packages
# Dump the README.md file
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
setup(
name='waapi-client',
packages=find_packages(exclude=['waapi.test']),
test_suite='waapi.test',
install_requires=[
'autobahn'
],
license='Apache License 2.0',
platforms=['any'],
scripts=[],
version='0.7.2',
description='Wwise Authoring API client.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Audiokinetic',
maintainer='Samuel Longchamps',
maintainer_email='[email protected]',
url='https://github.com/audiokinetic/waapi-client-python',
download_url='https://github.com/audiokinetic/waapi-client-python/releases',
keywords=['waapi', 'wwise', 'audiokinetic'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux'
],
)