forked from SolarArbiter/solarforecastarbiter-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (60 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup, find_packages
from os import path
import versioneer
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
EXTRAS_REQUIRE = {
'test': ['pytest', 'pytest-cov', 'pytest-mock', 'pytest-asyncio',
'asynctest', 'requests-mock'],
'fetch': ['aiohttp'],
'log': ['sentry-sdk'],
'cli': ['click'],
'plotting': ['bokeh', 'selenium']
}
EXTRAS_REQUIRE['all'] = [
vv for v in EXTRAS_REQUIRE.values() for vv in v]
setup(
name='solarforecastarbiter',
description='Core framework for Solar Forecast Arbiter',
long_description=long_description,
long_description_content_type='text/markdown',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/solararbiter/solarforecastarbiter-core',
author='Solar Forecast Arbiter Team',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'netCDF4',
'numpy',
'pandas>=0.25.1',
'requests',
'xarray',
'tables',
'pvlib>=0.7.0',
'scipy',
'bokeh',
'statsmodels',
'jsonschema',
'plotly',
'psutil',
'matplotlib',
],
extras_require=EXTRAS_REQUIRE,
project_urls={
'Bug Reports': 'https://github.com/solararbiter/solarforecastarbiter-core/issues', # NOQA,
'Source': 'https://github.com/solararbiter/solarforecastarbiter-core'
},
entry_points={
'console_scripts': [
'solararbiter=solarforecastarbiter.cli:cli'
]
}
)