forked from udapi/udapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 702 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
from setuptools import setup, find_packages
# python_requires is supported by pip only from November 2016,
# so let's check the Python version also the old way.
import sys
if sys.version_info < (3, 3):
raise SystemExit('Udapi requires Python 3.3 or higher.')
setup(
name='udapi-python',
version='0.1',
description='Python framework for processing Universal Dependencies data',
author='Vincent Kriz',
author_email='kriz@ufal.mff.cuni.cz',
url='https://github.com/udapi/udapi-python',
packages=find_packages(),
scripts=['bin/udapy'],
tests_require=['pytest'],
install_requires=['colorama', 'termcolor'],
python_requires='>=3.3'
)