-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 984 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
from setuptools import setup
import pyaimp
setup(
name='pyaimp',
version=pyaimp.__version__,
description='Python AIMP remote API wrapper with some extras',
long_description='Everything you need to know is located `here <https://epocdotfr.github.io/pyaimp/>`_.',
url='https://github.com/EpocDotFr/pyaimp',
author='Maxime "Epoc" Gross',
author_email='[email protected]',
license='DBAD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Operating System :: Microsoft :: Windows'
],
keywords='aimp remote api wrapper client',
py_modules=['pyaimp'],
install_requires=[
'pypiwin32'
],
download_url='https://github.com/EpocDotFr/pyaimp/archive/pyaimp-{version}.tar.gz'.format(version=pyaimp.__version__)
)