forked from canary-nlp/cdc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_cli.py
More file actions
23 lines (21 loc) · 729 Bytes
/
setup_cli.py
File metadata and controls
23 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
cur_path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(cur_path, 'cdc', 'resources', 'version.txt'), 'r') as vfile:
version = vfile.read()
setup(
name = "Canary Data Converter",
packages = ["cdc", "cdc.cli", "cdc.read", "cdc.write", "cdc.gui", "cdc.utils"],
entry_points = {
"console_scripts": ['canarydc = cdc.cli.application:main']
},
description = "Canary Data Converter",
author = "Peter Goldberg",
author_email = "canary@bwh.harvard.edu",
url = "http://canary.bwh.harvard.edu",
include_package_data=True,
package_data = {
'cdc': ['canarydc.ini', 'resources\\*']
},
version = version
)