forked from bootphon/tdev2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 878 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
33
34
#!/usr/bin/env python
"""Setup script for the TokenType package"""
import codecs
import setuptools
import tdev2
setuptools.setup(
# general description
name='tdev2',
description='Evaluation toolbox for Term Discovery systems',
version=tdev2.__version__,
long_description=open('README.md').read(),
url='https://github.com/bootphon/tdev2',
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={'tdev2': ['share/*']},
# metadata for upload to PyPI
author='Julien Karadayi, INRIA',
author_email='julien.karadayi@inria.fr',
zip_safe=True,
)