-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
40 lines (36 loc) · 1.24 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
"""
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="meteostat",
version="1.6.8",
author="Meteostat",
author_email="[email protected]",
description="Access and analyze historical weather and climate data with Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/meteostat/meteostat-python",
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"],
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",
"Topic :: Scientific/Engineering :: Visualization",
],
)