-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.06 KB
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from esgprep.constants import VERSION
setup(
name="esgprep",
version=VERSION,
description="Toolbox to prepare data for ESGF publication",
author="Levavasseur Guillaume",
author_email="glipsl@ipsl.fr",
url="https://github.com/ESGF/esgf-prepare",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.12",
platforms=["Unix"],
zip_safe=False,
entry_points={
"console_scripts": [
"esgmapfile=esgprep.esgmapfile:main",
"esgdrs=esgprep.esgdrs:main",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Build Tools",
],
)