-
Notifications
You must be signed in to change notification settings - Fork 12
/
pavement.py
35 lines (35 loc) · 1.29 KB
/
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
32
33
34
35
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',
'numpy==1.21.3', # required version for proper matplotlib compilation in Python 3.10
'markupsafe==2.0.1' # because newer ones broke an API that Jinja2 uses in Python 3.9
'matplotlib==2.2.4',
'Jinja2==2.8',
'mpld3==0.5.1'
],
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',
'csvscatterplot = utilities.csvscatterplot:main',
'xmlkaloi = utilities.xmlkaloi:main',
'jd2csv = utilities.jd2csv:main',
],
}
)