Skip to content

Commit

Permalink
Merge pull request #27 from Point72/tkp/email
Browse files Browse the repository at this point in the history
Clean up metadata and email references
  • Loading branch information
timkpaine authored Feb 7, 2024
2 parents fb99c94 + 7a3a4e5 commit edabf80
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ representative at an online or offline event.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected].
reported to the community leaders responsible for enforcement at [email protected].
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
4 changes: 2 additions & 2 deletions csp/examples/e_23_cpp_example/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend="setuptools.build_meta"

[project]
name = "csp-example-piglatin"
authors = [{name = "the csp authors", email = "t.paine154@gmail.com"}]
description="CSP stream processing library"
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
description="csp example of C++ node"
readme = "README.md"
version = "0.0.1"
requires-python = ">=3.8"
Expand Down
4 changes: 2 additions & 2 deletions csp/examples/e_24_cpp_struct_example/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend="setuptools.build_meta"

[project]
name = "csp-example-struct"
authors = [{name = "the csp authors", email = "t.paine154@gmail.com"}]
description="CSP stream processing library"
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
description="csp example of C++ node with csp.Structs"
readme = "README.md"
version = "0.0.1"
requires-python = ">=3.8"
Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ build-backend="setuptools.build_meta"

[project]
name = "csp"
authors = [{name = "the csp authors", email = "t.paine154@gmail.com"}]
description="CSP stream processing library"
authors = [{name = "the csp authors", email = "CSPOpenSource@point72.com"}]
description="csp is a high performance reactive stream processing library, written in C++ and Python"
readme = "README.md"
version = "0.1.0"
requires-python = ">=3.8"
Expand Down Expand Up @@ -41,7 +41,10 @@ classifiers = [
file = "LICENSE"

[project.urls]
repository = "https://github.com/point72/csp"
Repository = "https://github.com/point72/csp"
Homepage = "https://github.com/Point72/csp"
Documentation = "https://github.com/Point72/csp/wiki"
Tracker = "https://github.com/point72/csp/issues"

[project.optional-dependencies]
develop = [
Expand Down Expand Up @@ -111,7 +114,7 @@ testpaths = 'tests'
[tool.ruff]
line-length = 120

[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"csp/impl/__*.py" = ["F401"]
"csp/tests/*.py" = ["F401", "F403", "F811", "F821", "F841", "F842", "E731", "E741"]

0 comments on commit edabf80

Please sign in to comment.