-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·40 lines (33 loc) · 1.17 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
#!/usr/bin/env python
from distutils.core import setup
DESCRIPTION = """
DTMF Detection Library that takes wav files as input and outputs DTMF digit string. Project hosted at: http://fbdtmfdetector.sourceforge.net/ Written by David Luu
"""[1:-1]
CLASSIFIERS = """
Development Status :: 4 - Beta
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(name = 'dtmf-detector',
version = '0.1.0',
description = 'DTMF Detection Library',
long_description = DESCRIPTION,
author = 'David Luu',
author_email = 'nick@nlrobinson.com',
url = 'http://github.com/nickrobinson/DTMFDetector',
license = 'Public Domain',
keywords = 'voip sip dtmf phone analog testing',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['dtmf-detector'],
package_data = {'dtmf-detector': ['tests/*.txt']},
install_requires=[
],
)
""" From now on use this approach
python setup.py sdist upload
git tag -a 1.2.3 -m 'version 1.2.3'
git push --tags"""