forked from sglebs/srccheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pavement.py
31 lines (31 loc) · 1016 Bytes
/
pavement.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
from paver.setuputils import setup
from setuptools import find_packages
from utilities import VERSION
setup(
name='srccheck',
description='Source code KALOI (using Understand).',
packages=find_packages(),
version=VERSION,
url='https://github.com/sglebs/srccheck',
author='Marcio Marchini',
author_email='[email protected]',
install_requires=[
'docopt==0.6.2',
'requests==2.10.0',
'matplotlib==1.5.3',
'Jinja2==2.8',
'mpld3==0.3'
],
entry_points={
'console_scripts': [
'srccheck = utilities.srccheck:main',
'srchistplot = utilities.srchistplot:main',
'srcscatterplot = utilities.srcscatterplot:main',
'srcinstplot = utilities.srcinstplot:main',
'csvhistplot = utilities.csvhistplot:main',
'srcdiffplot = utilities.srcdiffplot:main',
'csvkaloi = utilities.csvkaloi:main',
'jd2csv = utilities.jd2csv:main',
],
}
)