forked from Som-Energia/cchloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 682 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 682 Bytes
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
from setuptools import setup, find_packages
setup(
name='cchloader',
version='0.2',
packages=find_packages(),
url='https://github.com/Som-Energia/cchloader',
license='GPLv3',
author='',
author_email='',
description='''Implementation based on sippers from GISCE
https://github.com/gisce/sippers''',
entry_points='''
[console_scripts]
usmartdata=usmartdata.cli:usmartdata
''',
package_data={
'cchloader': ['data/*']
},
install_requires=[
"raven",
"pymongo<3.0",
"osconf",
"marshmallow==2.0.0b2",
"click"
],
test_suite='',
)