-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 823 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, print_function
import io
from os.path import dirname
from os.path import join
from setuptools import setup
def read(*names, **kwargs):
return io.open(
join(dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
).read()
setup(
name='titanis',
version='0.0.1+open',
description='ISA library for text mining.',
author='ISA RAS',
author_email='',
packages=['titanis', 'titanis.features', 'titanis.data'],
package_dir={'': 'src'},
data_files=[('titanis/data', ['src/titanis/data/psydicts.json'])],
include_package_data=True,
zip_safe=False,
install_requires=['isanlp @ git+https://github.com/IINemo/isanlp.git', 'nltk', 'pymystem3', 'numpy==1.26.4']
)