|
| 1 | +[project] |
| 2 | +authors = [{name="Xavier Dupré", email="xavier.dupre@gmail.com"}] |
| 3 | +classifiers = [ |
| 4 | + "Intended Audience :: Science/Research", |
| 5 | + "Intended Audience :: Developers", |
| 6 | + "License :: OSI Approved :: MIT License", |
| 7 | + "Programming Language :: C", |
| 8 | + "Programming Language :: Python", |
| 9 | + "Topic :: Software Development", |
| 10 | + "Topic :: Scientific/Engineering", |
| 11 | + "Development Status :: 5 - Production/Stable", |
| 12 | + "Operating System :: Microsoft :: Windows", |
| 13 | + "Operating System :: POSIX", |
| 14 | + "Operating System :: Unix", |
| 15 | + "Operating System :: MacOS", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Programming Language :: Python :: 3.11", |
| 19 | + "Programming Language :: Python :: 3.12", |
| 20 | + "Programming Language :: Python :: 3.13", |
| 21 | +] |
| 22 | +dependencies = ["pandas"] |
| 23 | +description = "Streaming DataFrame: streaming over pandas." |
| 24 | +keywords = ["pandas", "streaming"] |
| 25 | +license = {file = "LICENSE.txt"} |
| 26 | +name = "pandas-streaming" |
| 27 | +readme = "README.rst" |
| 28 | +requires-python = ">=3.10" |
| 29 | +version = "0.5.2" |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +homepage = "https://sdpython.github.io/doc/pandas-streaming/dev/" |
| 33 | +documentation = "https://sdpython.github.io/doc/pandas-streaming/dev/" |
| 34 | +repository = "https://github.com/sdpython/pandas-streaming/" |
| 35 | +changelog = "https://sdpython.github.io/doc/pandas-streaming/dev/CHANGELOGS.html" |
| 36 | + |
1 | 37 | [tool.ruff] |
2 | 38 |
|
3 | 39 | # Exclude a variety of commonly ignored directories. |
@@ -38,7 +74,13 @@ select = [ |
38 | 74 | ] |
39 | 75 |
|
40 | 76 | [tool.ruff.lint.per-file-ignores] |
41 | | -"**" = ["B905", "C401", "C408", "C413", "RUF012", "RUF100", "RUF010", "SIM108", "SIM910", "SIM110", "SIM102", "SIM114", "SIM103", "UP015", "UP027", "UP031", "UP034", "UP032", "UP006", "UP035", "UP007", "UP038"] |
| 77 | +"**" = [ |
| 78 | + "B905", |
| 79 | + "C401", "C408", "C413", |
| 80 | + "RUF012", "RUF100", "RUF010", |
| 81 | + "SIM108", "SIM910", "SIM110", "SIM102", "SIM114", "SIM103", |
| 82 | + "UP015", "UP027", "UP031", "UP034", "UP032", "UP006", "UP035", "UP007", "UP038" |
| 83 | +] |
42 | 84 | "**/plot*.py" = ["B018"] |
43 | 85 | "_doc/examples/**.py" = ["E402", "F811", "B018"] |
44 | 86 | "_unittests/ut_df/test_dataframe_io_helpers.py" = ["E501"] |
|
0 commit comments