google-research

Форк
0
/
pyproject.toml 
66 строк · 1.8 Кб
1
[project]
2
# Project metadata. Available keys are documented at:
3
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
4
name = "seeds"
5
description = "Code and demo colab associated with the SEEDS paper (https://arxiv.org/abs/2306.14066)"
6
readme = "README.md"
7
requires-python = ">=3.8"
8
license = {file = "LICENSE"}
9
authors = [{name = "Lizao (Larry) Li", email="lizaoli@google.com"}]
10
classifiers = [  # List of https://pypi.org/classifiers/
11
    "License :: OSI Approved :: Apache Software License",
12
    "Intended Audience :: Science/Research",
13
]
14
version = "2023.12.12"
15
keywords = []
16

17
# pip dependencies of the project
18
# Installed locally with `pip install -e .`
19
dependencies = [
20
  "cartopy",
21
  "matplotlib",
22
  "numpy",
23
  "pandas",
24
  "scipy",
25
  "tensorflow",
26
  "xarray",
27
  "zarr",
28
]
29

30
[project.urls]
31
homepage = "https://github.com/google-research/seeds"
32
repository = "https://github.com/google-research/seeds"
33
changelog = "https://github.com/google-research/my_project/blob/main/CHANGELOG.md"
34
# documentation = ""
35

36
[project.optional-dependencies]
37
# Development deps (unittest, linting, formating,...)
38
# Installed through `pip install -e .[dev]`
39
dev = [
40
    "pytest",
41
    "pytest-xdist",
42
    "pylint>=2.6.0",
43
    "pyink",
44
]
45

46
[tool.pyink]
47
# Formatting configuration to follow Google style-guide
48
line-length = 80
49
preview = true
50
pyink-indentation = 2
51
pyink-use-majority-quotes = true
52

53
[build-system]
54
# Build system specify which backend is used to build/install the project (flit,
55
# poetry, setuptools,...). All backends are supported by `pip install`
56
requires = ["flit_core >=3.8,<4"]
57
build-backend = "flit_core.buildapi"
58

59
[tool.flit.sdist]
60
# Flit specific options (files to exclude from the PyPI package).
61
# If using another build backend (setuptools, poetry), you can remove this
62
# section.
63
exclude = [
64
  # Do not release tests files on PyPI
65
  "**/*_test.py",
66
]
67

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.