forked from Perlence/PyGuitarPro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (62 loc) · 2.07 KB
/
setup.py
File metadata and controls
69 lines (62 loc) · 2.07 KB
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
from setuptools import setup, find_packages
# http://bugs.python.org/issue15881
try:
import multiprocessing # noqa
except ImportError:
pass
setup_requires = ['pytest-runner']
install_requires = [
'attrs',
'six',
'enum34',
]
tests_require = [
'pytest',
]
try:
import argparse # noqa
except ImportError:
install_requires.append('argparse')
with open('README.rst') as fp:
README = fp.read()
setup(
name='PyGuitarPro',
description='Read, write, and manipulate GP3, GP4 and GP5 files.',
long_description=README,
version='0.3.1',
author='Sviatoslav Abakumov',
author_email='dust.harvesting@gmail.com',
url='https://github.com/Perlence/PyGuitarPro',
platforms=['Windows', 'POSIX', 'Unix', 'MacOS X'],
license='LGPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Sound/Audio',
],
)