|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=66.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +# ============================================================================ |
| 6 | +# project info |
| 7 | +# ============================================================================ |
| 8 | + |
| 9 | +[project] |
| 10 | +name = "compas_eve" |
| 11 | +description = "COMPAS Event Extensions: adds event-based communication infrastructure to the COMPAS framework." |
| 12 | +keywords = ["events", "event-driven", "compas", "architecture", "distributed systems"] |
| 13 | +authors = [ |
| 14 | + { name = "Gonzalo Casas", email = "[email protected]" }, |
| 15 | + { name = "Chen Kasirer", email = "[email protected]" }, |
| 16 | +] |
| 17 | +license = { file = "LICENSE" } |
| 18 | +readme = "README.md" |
| 19 | +requires-python = ">=3.9" |
| 20 | +dynamic = ['dependencies', 'optional-dependencies', 'version'] |
| 21 | +classifiers = [ |
| 22 | + "Development Status :: 4 - Beta", |
| 23 | + "Topic :: Scientific/Engineering", |
| 24 | + "Operating System :: Unix", |
| 25 | + "Operating System :: POSIX", |
| 26 | + "Operating System :: Microsoft :: Windows", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Programming Language :: Python :: 3.13", |
| 33 | + "Programming Language :: Python :: 3.14", |
| 34 | +] |
| 35 | + |
| 36 | +[project.entry-points.'compas_pb.plugins'] |
| 37 | +serializers = 'compas_eve.codecs.conversions' |
| 38 | + |
| 39 | +[project.urls] |
| 40 | +Homepage = "https://github.com/compas-dev/compas_eve" |
| 41 | +Documentation = "https://compas.dev/compas_eve" |
| 42 | +Repository = "https://github.com/compas-dev/compas_eve" |
| 43 | +Changelog = "https://github.com/compas-dev/compas_eve/blob/main/CHANGELOG.md" |
| 44 | +Issues = "https://github.com/compas-dev/compas_eve/issues" |
| 45 | +Forum = "https://forum.compas-framework.org/" |
| 46 | + |
| 47 | + |
| 48 | +# ============================================================================ |
| 49 | +# setuptools config |
| 50 | +# ============================================================================ |
| 51 | + |
1 | 52 | [tool.black] |
2 | 53 | line-length = 120 |
3 | 54 |
|
|
0 commit comments