Skip to content

Commit

Permalink
Indent 2 in toml
Browse files Browse the repository at this point in the history
  • Loading branch information
gmr committed Jan 30, 2024
1 parent 83563f1 commit 8eb02c0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 26 deletions.
6 changes: 1 addition & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ indent_style = space
indent_size = 4

# 2 space indentation
[*.yml]
indent_style = space
indent_size = 2

[bootstrap]
[{*.toml,*.yaml}]
indent_style = space
indent_size = 2
38 changes: 17 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,37 @@ name = "rejected"
dynamic = ["version"]
description = "Analytics Ingestion Service"
authors = [
{name = "Gavin M. Roy", email="[email protected]"}
{name = "Gavin M. Roy", email="[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed"
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed"
]
dependencies = [
"pika",
"pyyaml"
"pika>=1.3.2,<1.4",
"pyyaml>=6.0.1,<7"
]
license = { text = "BSD 3-Clause" }
readme = "README.rst"
requires-python = ">=3.12"

[project.optional-dependencies]
amqp = [
"aiorabbit>=1.0,<2",
"fastavro>=1.7.3,<1.8.2",
]
docs = ["sphinx>=7.2.6,<7.3"]
postgres = [ "psycopg[binary,pool]>=3.1.9"]
sentry = ["sentry-sdk>=1.5.4,<2"]
testing = [
"build",
"coverage>=7.4.0,<8",
"pre-commit>=3.5.0,<4",
"psycopg[binary,pool]>=3.1.16,<4",
"sentry-sdk>=1.39.1,<2"
"build",
"coverage>=7.4.0,<8",
"pre-commit>=3.5.0,<4",
"psycopg[binary,pool]>=3.1.16,<4",
"sentry-sdk>=1.39.1,<2"
]

[project.scripts]
Expand Down

0 comments on commit 8eb02c0

Please sign in to comment.