generated from rl-institut/rli_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (37 loc) · 1.1 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
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import find_packages, setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="oemoflex",
version="0.0.4dev",
description="A flexible model structure for creating and analysing multi-regional"
"sector-integrated energysystem models featuring many flexibility options",
long_description=read("README.md"),
packages=find_packages(),
package_data={
"oemoflex.config": ["settings.yaml"],
"oemoflex.model": [
"*.yml",
"*.csv",
os.path.join("facade_attrs", "*.csv"),
],
"oemoflex.tools": [
"*.yaml",
"*.csv",
],
},
package_dir={"oemoflex": "oemoflex"},
install_requires=[
"pyyaml",
"dynaconf",
"pandas",
"oemof.tabular==0.0.5",
"plotly",
"frictionless",
"matplotlib",
],
# black version is specified so that each contributor uses the same one
extras_require={"dev": ["pytest", "black==20.8b1", "coverage", "flake8"]},
)