forked from multiply-org/prior-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 840 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
requirements = [
'python-dateutil',
'gdal',
'matplotlib',
'numpy',
'pyyaml',
'shapely'
]
__version__ = None
with open('multiply_prior_engine/version.py') as f:
exec(f.read())
setup(name='multiply-prior-engine',
version=__version__,
description='MULTIPLY Prior Engine',
author='MULTIPLY Team',
packages=['multiply_prior_engine'],
# entry_points={
# 'file_system_plugins': [
# 'local_file_system = multiply_data_access:local_file_system.LocalFileSystemAccessor',
# ],
# 'meta_info_provider_plugins': [
# 'json_meta_info_provider = multiply_data_access:json_meta_info_provider.JsonMetaInfoProviderAccessor',
# ],
# },
install_requires=requirements
)