forked from gantian127/pymt_era5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.29 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
#! /usr/bin/env python
from setuptools import find_packages, setup
entry_points = {
"pymt.plugins": [
"Era5=pymt_era5.bmi:Era5",
]
}
def read(filename):
with open(filename, "r", encoding="utf-8") as fp:
return fp.read()
long_description = "\n\n".join(
[read("README.rst"), read("CREDITS.rst"), read("CHANGES.rst")]
)
setup(
name="pymt_era5",
author="Tian Gan",
author_email="[email protected]",
description="PyMT plugin for ERA5 dataset",
long_description=long_description,
version="0.1.1",
url="https://github.com/gantian127/pymt_era5",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
keywords=["bmi", "pymt"],
install_requires=open("requirements.txt", "r").read().splitlines(),
packages=find_packages(),
entry_points=entry_points,
include_package_data=True,
)