|
1
2
3
4
5
6
7
|
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
if __name__ == '__main__':
setup(name='${MORFEUSZBUILDER}',
author='${CPACK_PACKAGE_VENDOR}',
author_email='${CPACK_PACKAGE_CONTACT}',
|
|
10
11
12
|
packages=['morfeuszbuilder', 'morfeuszbuilder.fsa', 'morfeuszbuilder.tagset', 'morfeuszbuilder.segrules', 'morfeuszbuilder.utils'],
scripts = ['buildfsa.py'],
requires=['pyparsing'])
|