-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.01 KB
/
setup.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
#!/usr/bin/env python
from setuptools import setup
requirements = [
# 'numpy',
# 'scipy',
# 'scikit-learn',
# 'shapely',
# 'gdal'
]
__version__ = None
with open('multiply_post_processing/version.py') as f:
exec(f.read())
setup(name='multiply-post-processing',
version=__version__,
description='MULTIPLY Post Processing',
author='MULTIPLY Team',
packages=['multiply_post_processing'],
entry_points={
'console_scripts': [
'multiply_post = multiply_post_processing.cli.cli:main',
],
'post_processor_creators': [
'burned_severity_post_processor_creator = '
'multiply_post_processing:burned_severity_post_processor.BurnedSeverityPostProcessorCreator',
'functional_diversity_metrics_post_processor_creator = multiply_post_processing:'
'functional_diversity_metrics_post_processor.FunctionalDiversityMetricsPostProcessorCreator'
]
},
install_requires=requirements
)