forked from simon-r/dr14_t.meter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (53 loc) · 2.28 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
# dr14_t.meter: compute the DR14 value of the given audiofiles
# Copyright (C) 2011 Simone Riva
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import subprocess
import re
from distutils.core import setup
from dr14tmeter.dr14_global import dr14_version
from distutils.command.install import install
class dr14_install(install):
user_options = install.user_options
def run(self):
install.run(self)
man_dir = os.path.abspath("./man/")
#print ( "root: " + self.root )
#print ( "prefix: " + self.prefix )
prefix = re.sub( r'^/' , '' , self.prefix )
output = subprocess.Popen([os.path.join(man_dir, "install.sh")],
stdout=subprocess.PIPE,
cwd=man_dir,
env=dict({"PREFIX": os.path.join( self.root , prefix ) }, **dict(os.environ))).communicate()[0]
print( output )
setup(name = "dr14_tmeter",
version = "%s" % dr14_version() ,
description = "Compute the DR14 value of the given audio files",
author = "Simone Riva",
author_email = "simone.rva [at] gmail.com",
url = "http://simon-r.github.com/dr14_t.meter",
packages = ['dr14tmeter'],
scripts = ["dr14_tmeter"],
long_description = "Compute the DR14 value of the given audio files according to the algorithm decribed by the Pleasurize Music Foundation" ,
classifiers=[
'Development Status :: %s Stable' % dr14_version() ,
'Environment :: Console',
'Intended Audience :: Users',
'License :: OSI Approved :: GPL-3.0+',
'Operating System :: Linux',
'Programming Language :: Python',
'Topic :: Multimedia'] ,
cmdclass={"install": dr14_install },
)