-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (56 loc) · 1.55 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
"""
Setup file
The code is licensed under the MIT license.
"""
from os import path
from setuptools import setup, find_packages
# Content of the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as f:
long_description = f.read()
# Setup
setup(
name="jasper",
version="0.10.0",
author="Meteostat",
author_email="[email protected]",
description="Import and export meteorological data using Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/meteostat/meteor",
keywords=["weather", "climate", "data", "timeseries", "meteorology"],
python_requires=">=3.6.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"pandas>=1.1",
"pytz",
"numpy",
"configparser",
"sqlalchemy",
"mysql-connector-python",
"lxml",
"metar>=1.8",
"meteostat==1.6.1",
],
extras_require={
"spatial": [
"cython",
"pyproj",
"netCDF4==1.5.6",
"xarray",
"numba",
"pykdtree",
"verde==1.6.1",
]
},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)