-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 901 Bytes
/
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
import sys
from setuptools import setup
import reaper
def readme():
with open('README.md') as f:
return f.read()
setup(name='reaper',
version=reaper.__version__,
description='',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing :: Linguistic',
],
keywords='pitch google-reaper',
url='https://github.com/SpeechInContext/pyReaper',
author='Michael McAuliffe',
author_email='[email protected]',
packages=['reaper',
'reaper.command_line'],
entry_points = {
'console_scripts': ['batch_reaper=reaper.command_line.batch_reaper:main',],
}
)