-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (57 loc) · 1.85 KB
/
setup.py
File metadata and controls
60 lines (57 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
PACKAGES = [
'esmvaltool_sample_data',
]
setup(
name='ESMValTool_sample_data',
version='0.0.4',
description="ESMValTool sample data",
long_description=readme,
long_description_content_type='text/markdown',
author="Stef Smeets, Bouwe Andela",
url='https://github.com/ESMValGroup/ESMValTool_sample_data',
packages=PACKAGES,
include_package_data=True,
license="Apache 2.0; CC BY-SA 4.0",
license_files=("LICENSE",),
zip_safe=False,
keywords='ESMValTool',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Physics',
],
install_requires=[
'scitools-iris>=3.6',
],
extras_require={
'develop': [
'codespell',
'docformatter',
'esgf-pyclient',
'isort',
'myproxyclient',
'pre-commit',
'prospector[with_pyroma]!=1.1.6.3,!=1.1.6.4',
'pytest',
'yamllint',
'yapf',
],
},
)