-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 868 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 868 Bytes
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
#!/usr/bin/env python
"""Setup script for the TokenType package"""
import codecs
import setuptools
import tde
setuptools.setup(
# general description
name='tde',
description='Evaluation toolbox for Term Discovery systems',
version=tde.__version__,
long_description=open('README.md').read(),
url='https://github.com/bootphon/tde',
license='LICENSE.txt',
# python package dependencies
setup_requires=['pandas',
'numpy'],
install_requires=['editdistance',
'joblib',
'intervaltree'],
tests_require=['pytest'],
# packages for code and data
packages=setuptools.find_packages(),
package_data={'tde': ['share/*']},
# metadata for upload to PyPI
author='Julien Karadayi, INRIA',
author_email='julien.karadayi@inria.fr',
zip_safe=True,
)