-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (53 loc) · 2 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
from setuptools import setup, find_packages, Extension
from distutils.util import get_platform
import os, sys
import numpy as np
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# Generate meta-data for Git
from soundannotatordemo.config.generateMetaData import generateMetaData
generateMetaData()
ext_modules = []
include_dirs =[]
if __name__ == "__main__":
setup(
name='soundannotatordemo',
version='1.1',
url='http://www.soundappraisal.eu',
description='Package with demo and application code accompanying the libsoundannotator libary for online sound classification ',
long_description=read('README.md'),
author='Ronald van Elburg, Arryon Tijsma',
author_email='[email protected]',
download_url='--tba--',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research/Education',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Computational Auditory Scene Analysis'
],
install_requires=[
'libsoundannotator',
],
packages=find_packages(),
ext_modules = None,
ext_package = None,
entry_points={
'console_scripts': [
'soundAnnotator = soundannotatordemo.projects.simple.soundAnnotator:run',
'inputtohdf = soundannotatordemo.projects.input.inputtohdf:run'
],
},
test_suite='nose.collector',
package_dir={
},
package_data={
},
)