-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (48 loc) · 1.57 KB
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
53
54
#!/usr/bin/env python
PROJECT = 'MTData'
# Change docs/sphinx/conf.py too!
VERSION = '0.7'
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ''
setup(name=PROJECT,
version=VERSION,
description='Data Toolbox for MindTrails Projects',
long_description=long_description,
install_requires=['cliff'],
url='http://github.com/Diheng/MTData',
author='Diheng Zhang, Dan Funk, Sam Portnow',
author_email='dzhang@virginia.edu`',
license='MIT',
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'MTData = MTData.main:main'
],
'MTData': [
'export = MTData.export:Export',
'decode = MTData.recovery:Decode',
'error = cliffdemo.simple:Error',
'report = MTData.report:Report',
'simple = MTData.simple:Simple',
'list files = cliffdemo.list:Files',
'files = cliffdemo.list:Files',
'file = cliffdemo.show:File',
'show file = cliffdemo.show:File',
'unicode = cliffdemo.encoding:Encoding',
'status = MTData.status:Status',
'clean = MTData.clean_dup:Clean_Dup',
'scores = MTData.scores:Scores',
'LongToWide = MTData.transform:Trans',
'prepare = MTData.prepare:Prepare'
],
},
)