-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (31 loc) · 918 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
from setuptools import find_packages, setup
import os
setup(
name='dataprocessing',
version='0.3.0',
packages=find_packages(),
package_data={
'dataprocessing': [os.path.join('sql_snippets','*.sql')]
},
url='https://github.com/openego/dataprocessing',
license='GNU GENERAL PUBLIC LICENSE Version 3',
author='open_eGo development group',
author_email='',
description='Data processing related to the research project open_eGo',
install_requires=[
'pandas',
'workalendar',
'oemof.db',
'demandlib',
'ego.io >=0.0.1rc4, <= 0.0.2',
'geoalchemy2'
],
extras_require={
'docs': [
'sphinx >= 1.4',
'sphinx_rtd_theme',
'sphinxcontrib-httpdomain']},
entry_points={
'console_scripts': [
'ego_data_processing = dataprocessing.eGo_data_processing:data_processing', ]}
)