-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.44 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (39 loc) · 1.44 KB
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
from setuptools import setup, find_packages
setup(
name="ClimEval", # PyPI package name
use_scm_version=True, # Auto-manages versions via Git tags
setup_requires=["setuptools_scm"], # Ensures setuptools_scm is used
author="Shiv Shankar Singh",
author_email="shivshankarsingh.py@gmail.com",
description="Climate Model vs. Observation Verification Tool",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/shiv3679/ClimEval",
packages=find_packages(include=["climeval", "climeval.*"]),
install_requires=[
"numpy",
"xarray",
"dask",
"scipy",
"matplotlib",
"cartopy",
"pytest"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"climeval=climeval.cli:main" # Optional CLI support
]
},
include_package_data=True, # Ensures non-Python files (like README.md) are included
zip_safe=False, # Ensures compatibility with different environments
)