-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 917 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 917 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
from setuptools import setup
setup(
name='ehostess',
version='0.0.4',
description='A toolkit for working with eHost, pyConText, and other annotation and NLP tools.',
url='https://github.com/MMontgomeryTaggart/eHostess',
author='Max Taggart',
author_email = "max.taggart@utah.edu",
license='MIT',
packages = ['eHostess',
'eHostess.Analysis',
'eHostess.Annotations',
'eHostess.eHostInterface',
'eHostess.MongoDBInterface',
'eHostess.NotePreprocessing',
'eHostess.PyConTextInterface',
'eHostess.PyConTextInterface.SentenceSplitters',
'eHostess.Utilities'
],
package_dir={'eHostess.PyConTextInterface' : 'eHostess/PyConTextInterface'},
package_data = {'eHostess.PyConTextInterface' : ['TargetsAndModifiers/*.tsv']},
download_url = 'https://github.com/MMontgomeryTaggart/eHostess/archive/0.0.4.tar.gz'
)