forked from cournape/audiolab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
73 lines (60 loc) · 2.48 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
70
71
72
73
#! /usr/bin/env python
# Last Change: Fri Mar 27 05:00 PM 2009 J
# Copyright (C) 2006-2007 Cournapeau David <[email protected]>
#
# This library is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option) any
# later version.
#
# This library 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this library; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# TODO:
# - check how to handle cmd line build options with distutils and use
# it in the building process
import os
# The following is more or less random copy/paste from numpy.distutils ...
import setuptools
from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
from common import *
def configuration(parent_package='',top_path=None, package_name=DISTNAME):
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
write_info(os.path.join("audiolab", "info.py"))
write_version(os.path.join("audiolab", "version.py"))
# XXX: find a way to include the doc in sdist
if os.path.exists(os.path.join("docs", "src")):
write_version(os.path.join("docs", "src", "audiolab_version.py"))
config = Configuration(None,parent_package,top_path,
version=build_fverstring(),
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
long_description=LONG_DESCRIPTION)
config.set_options(
ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True,
)
config.add_subpackage('audiolab')
return config
if __name__ == "__main__":
# setuptools version of config script
setup(configuration=configuration,
name=DISTNAME,
install_requires=INSTALL_REQUIRE,
packages=setuptools.find_packages(),
include_package_data = True,
test_suite="tester",
zip_safe=False,
classifiers=CLASSIFIERS)