|
1 |
| -[build-system] |
2 |
| -requires = ["setuptools>=64", "setuptools_scm>=8"] |
3 |
| -build-backend = "setuptools.build_meta" |
| 1 | +# [build-system] |
| 2 | +# requires = ["setuptools>=64", "setuptools_scm>=8"] |
| 3 | +# build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +# [project] |
| 6 | +# name = "sparse" |
| 7 | +# dynamic = ["version"] |
| 8 | +# description = "Sparse n-dimensional arrays for the PyData ecosystem" |
| 9 | +# readme = "README.rst" |
| 10 | +# dependencies = ["numpy>=1.17"] |
| 11 | +# maintainers = [{ name = "Hameer Abbasi", email = "[email protected]" }] |
| 12 | +# requires-python = ">=3.9" |
| 13 | +# license = { file = "LICENSE" } |
| 14 | +# keywords = ["sparse", "numpy", "scipy", "dask"] |
| 15 | +# classifiers = [ |
| 16 | +# "Development Status :: 2 - Pre-Alpha", |
| 17 | +# "Operating System :: OS Independent", |
| 18 | +# "License :: OSI Approved :: BSD License", |
| 19 | +# "Programming Language :: Python", |
| 20 | +# "Programming Language :: Python :: 3", |
| 21 | +# "Programming Language :: Python :: 3.9", |
| 22 | +# "Programming Language :: Python :: 3.10", |
| 23 | +# "Programming Language :: Python :: 3.11", |
| 24 | +# "Programming Language :: Python :: 3 :: Only", |
| 25 | +# "Intended Audience :: Developers", |
| 26 | +# "Intended Audience :: Science/Research", |
| 27 | +# ] |
| 28 | + |
| 29 | +# [project.optional-dependencies] |
| 30 | +# docs = ["sphinx", "sphinx_rtd_theme", "scipy"] |
| 31 | +# tests = [ |
| 32 | +# "dask[array]", |
| 33 | +# "pytest>=3.5", |
| 34 | +# "pytest-cov", |
| 35 | +# "pre-commit", |
| 36 | +# "scipy", |
| 37 | +# ] |
| 38 | +# tox = ["sparse[tests]", "tox"] |
| 39 | +# all = ["sparse[docs,tox]", "matrepr"] |
| 40 | +# finch = ["finch-tensor==0.1.6"] |
| 41 | + |
| 42 | +# [project.urls] |
| 43 | +# Documentation = "https://sparse.pydata.org/" |
| 44 | +# Source = "https://github.com/pydata/sparse/" |
| 45 | +# Repository = "https://github.com/pydata/sparse.git" |
| 46 | +# "Issue Tracker" = "https://github.com/pydata/sparse/issues" |
| 47 | +# Discussions = "https://github.com/pydata/sparse/discussions" |
| 48 | + |
| 49 | +# # [project.entry-points.numba_extensions] |
| 50 | +# # init = "sparse.pydata_backend._numba_extension:_init_extension" |
| 51 | + |
| 52 | +# [tool.setuptools.packages.find] |
| 53 | +# where = ["."] |
| 54 | +# include = ["sparse", "sparse.*"] |
| 55 | + |
| 56 | +# [tool.setuptools_scm] |
| 57 | +# version_file = "sparse/_version.py" |
| 58 | + |
| 59 | +# [tool.ruff] |
| 60 | +# exclude = ["sparse/_version.py"] |
| 61 | +# line-length = 120 |
| 62 | + |
| 63 | +# [tool.ruff.lint] |
| 64 | +# select = ["F", "E", "W", "I", "B", "UP", "YTT", "BLE", "C4", "T10", "ISC", "ICN", "PIE", "PYI", "RSE", "RET", "SIM", "PGH", "FLY", "NPY", "PERF"] |
4 | 65 |
|
5 |
| -[project] |
6 |
| -name = "sparse" |
7 |
| -dynamic = ["version"] |
8 |
| -description = "Sparse n-dimensional arrays for the PyData ecosystem" |
| 66 | +# [tool.ruff.lint.isort.sections] |
| 67 | +# numpy = ["numpy", "numpy.*", "scipy", "scipy.*"] |
| 68 | + |
| 69 | +# [tool.ruff.format] |
| 70 | +# quote-style = "double" |
| 71 | +# docstring-code-format = true |
| 72 | + |
| 73 | +# [tool.ruff.lint.isort] |
| 74 | +# section-order = [ |
| 75 | +# "future", |
| 76 | +# "standard-library", |
| 77 | +# "first-party", |
| 78 | +# "third-party", |
| 79 | +# "numpy", |
| 80 | +# "local-folder", |
| 81 | +# ] |
| 82 | + |
| 83 | +[tool.poetry] |
| 84 | +name = "sparse-copy" |
| 85 | +version = "1.1.1" |
| 86 | +description = "" |
| 87 | +authors = ["Hameer Abbasi"] |
9 | 88 | readme = "README.rst"
|
10 |
| -dependencies = ["numpy>=1.17"] |
11 |
| -maintainers = [{ name = "Hameer Abbasi", email = "[email protected]" }] |
12 |
| -requires-python = ">=3.9" |
13 |
| -license = { file = "LICENSE" } |
14 |
| -keywords = ["sparse", "numpy", "scipy", "dask"] |
15 |
| -classifiers = [ |
16 |
| - "Development Status :: 2 - Pre-Alpha", |
17 |
| - "Operating System :: OS Independent", |
18 |
| - "License :: OSI Approved :: BSD License", |
19 |
| - "Programming Language :: Python", |
20 |
| - "Programming Language :: Python :: 3", |
21 |
| - "Programming Language :: Python :: 3.9", |
22 |
| - "Programming Language :: Python :: 3.10", |
23 |
| - "Programming Language :: Python :: 3.11", |
24 |
| - "Programming Language :: Python :: 3 :: Only", |
25 |
| - "Intended Audience :: Developers", |
26 |
| - "Intended Audience :: Science/Research", |
27 |
| -] |
28 |
| - |
29 |
| -[project.optional-dependencies] |
30 |
| -docs = ["sphinx", "sphinx_rtd_theme", "scipy"] |
31 |
| -tests = [ |
32 |
| - "dask[array]", |
33 |
| - "pytest>=3.5", |
34 |
| - "pytest-cov", |
35 |
| - "pre-commit", |
36 |
| - "scipy", |
37 |
| -] |
38 |
| -tox = ["sparse[tests]", "tox"] |
39 |
| -all = ["sparse[docs,tox]", "matrepr"] |
40 |
| -finch = ["finch-tensor==0.1.6"] |
41 |
| - |
42 |
| -[project.urls] |
43 |
| -Documentation = "https://sparse.pydata.org/" |
44 |
| -Source = "https://github.com/pydata/sparse/" |
45 |
| -Repository = "https://github.com/pydata/sparse.git" |
46 |
| -"Issue Tracker" = "https://github.com/pydata/sparse/issues" |
47 |
| -Discussions = "https://github.com/pydata/sparse/discussions" |
48 |
| - |
49 |
| -# [project.entry-points.numba_extensions] |
50 |
| -# init = "sparse.pydata_backend._numba_extension:_init_extension" |
51 |
| - |
52 |
| -[tool.setuptools.packages.find] |
53 |
| -where = ["."] |
54 |
| -include = ["sparse", "sparse.*"] |
55 |
| - |
56 |
| -[tool.setuptools_scm] |
57 |
| -version_file = "sparse/_version.py" |
58 |
| - |
59 |
| -[tool.ruff] |
60 |
| -exclude = ["sparse/_version.py"] |
61 |
| -line-length = 120 |
62 |
| - |
63 |
| -[tool.ruff.lint] |
64 |
| -select = ["F", "E", "W", "I", "B", "UP", "YTT", "BLE", "C4", "T10", "ISC", "ICN", "PIE", "PYI", "RSE", "RET", "SIM", "PGH", "FLY", "NPY", "PERF"] |
65 |
| - |
66 |
| -[tool.ruff.lint.isort.sections] |
67 |
| -numpy = ["numpy", "numpy.*", "scipy", "scipy.*"] |
68 |
| - |
69 |
| -[tool.ruff.format] |
70 |
| -quote-style = "double" |
71 |
| -docstring-code-format = true |
72 |
| - |
73 |
| -[tool.ruff.lint.isort] |
74 |
| -section-order = [ |
75 |
| - "future", |
76 |
| - "standard-library", |
77 |
| - "first-party", |
78 |
| - "third-party", |
79 |
| - "numpy", |
80 |
| - "local-folder", |
81 |
| -] |
| 89 | +packages = [{include = "sparse"}] |
| 90 | + |
| 91 | +[tool.poetry.dependencies] |
| 92 | +python = "^3.9" |
| 93 | +juliapkg = "^0.1.10" |
| 94 | +juliacall = "^0.9.15" |
| 95 | +numpy = "^1.19" |
| 96 | +llvmlite = "0.42.0" |
| 97 | +numba = "^0.59" |
| 98 | + |
| 99 | +[tool.poetry.group.tests.dependencies] |
| 100 | +pytest = "^7.4.4" |
| 101 | +pre-commit = "^3.6.0" |
| 102 | +pytest-cov = "^4.1.0" |
| 103 | +scipy = "^1.7" |
| 104 | + |
| 105 | +[tool.poetry.group.finch.dependencies] |
| 106 | +finch-tensor = "0.1.6" |
| 107 | + |
| 108 | +[build-system] |
| 109 | +requires = ["poetry-core"] |
| 110 | +build-backend = "poetry.core.masonry.api" |
0 commit comments