forked from ufal/pytreex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (23 loc) · 830 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (23 loc) · 830 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
#!/usr/bin/env python
# -"- coding: utf-8 -"-
from distutils.core import setup
import codecs
setup(
name='PyTreex',
version='0.1dev',
author='Ondrej Dusek',
packages=['pytreex', 'pytreex.core', 'pytreex.tool', 'pytreex.tool.ml',
'pytreex.tool.lexicon', 'pytreex.block', 'pytreex.block.t2a',
'pytreex.block.t2a.cs', 'pytreex.block.a2w', 'pytreex.block.a2w.cs',
'pytreex.block.util', 'pytreex.block.write', 'pytreex.block.read',
'pytreex.block.t2t'],
scripts=['bin/pytreex'],
url='https://github.com/ufal/pytreex',
license='LICENSE.txt',
description='A minimal Python implementation of the Treex API',
long_description=codecs.open('README.md', 'rb', 'UTF-8').read(),
install_requires=[
"PyYAML",
"Unidecode",
],
)