forked from oemof/feedinlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 645 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
"""
@author: uwe
"""
import sys
import os
from setuptools import setup
setup(name='feedinlib',
version='0.0.12',
description='Creating time series from pv or wind power plants.',
url='http://github.com/oemof/feedinlib',
author='oemof developing group',
author_email='birgit.schachler@rl-institut.de',
license='GPL3',
packages=['feedinlib'],
zip_safe=False,
install_requires=['numpy >= 1.7.0',
'pandas >= 0.13.1',
'pvlib >= 0.4.0',
'windpowerlib == 0.0.4',
'requests'])