-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (41 loc) · 1.22 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
43
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='medea_data_atde',
version='0.1.0',
author='Sebastian Wehrle',
author_email='[email protected]',
description='data processing for the medea power system model',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/sebwehrle/medea_data_atde',
project_urls={},
license='MIT',
packages=['medea_data_atde'],
install_requires=[
'pyyaml',
'numpy',
'scipy',
'pandas',
'netCDF4',
'certifi',
'cdsapi',
'urllib3',
'pysftp',
'openpyxl',
'xlrd',
'bs4',
],
data_files=[
('raw', ['data/raw/capacities.csv']),
('raw', ['data/raw/technologies.csv']),
('raw', ['data/raw/operating_region.csv']),
('raw', ['data/raw/transmission.csv']),
('raw', ['data/raw/external_cost.csv']),
('raw', ['data/raw/consumption_pattern.csv']),
('raw', ['data/raw/point_estimates.csv']),
('raw', ['data/raw/price_nonmarket_fuels.csv']),
],
include_package_data=True,
)