-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.57 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='delphin.redwoods',
version='0.1.0',
description='Pydelphin plugin for LinGO Redwoods Treebank',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/delph-in/delphin.redwoods',
author='Rimvydas Rubavicius',
author_email='',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities'
],
keywords='nlp semantics hpsg delph-in linguistics',
packages=[
],
data_files = [
('1214', 'data/1214.csv'),
('2018', 'data/2018.csv'),
],
include_package_data=True,
install_requires=[
'pydelphin >= 1.0.0',
'svn >= 0.3.46 ',
],
extras_require={
},
entry_points={
},
)