-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
32 lines (27 loc) · 948 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
from setuptools import setup, find_packages
import io
with io.open('README.md', encoding='utf8') as file:
description = file.read()
setup(
name='ipymarkup',
version='0.9.0',
description='NER, syntax tree markup visualisations for Jupyter Notebook',
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/natasha/ipymarkup',
author='Alexander Kukushkin',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords='ner, syntax tree, markup, jupyter, ipython',
packages=find_packages(),
install_requires=[
# 'IntervalTree' object has no attribute 'search'
'intervaltree>=3'
]
)