-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (42 loc) · 1.59 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
from setuptools import setup, find_packages
import os
from piwho import config
curr = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(curr,'readme.rst')) as f:
description = f.read()
setup(
name='piwho',
version=config.__VERSION__,
url='https://github.com/Adirockzz95/PiWho',
license='MIT',
author='Aditya Khandkar',
author_email='[email protected]',
description=('A python wrapper around MARF speaker recognition framework'
'for raspberry pi and other SBCs'),
long_description=description,
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=[
'watchdog>=0.8.3'
],
include_package_data=True,
package_data = {
'piwho': ['marf/*.jar']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'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'
],
keywords = 'Speaker recognition Raspberry Pi MARF',
)