-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from epics-extensions/project-meta
chore: improve project metadata
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
[tool.poetry] | ||
name = "wetest" | ||
version = "1.2.2" | ||
description = "WeTest allows you to test EPICS modules" | ||
description = "WeTest enables you to test EPICS modules" | ||
license = "EPICS" | ||
authors = [ | ||
"Francis GOHIER <[email protected]>", | ||
"Katy SAINTIN <[email protected]>", | ||
"Rémi NICOLE <[email protected]>", | ||
"Victor NADOT <[email protected]>", | ||
] | ||
maintainers = ["Rémi NICOLE <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/epics-extensions/WeTest" | ||
keywords = ["epics", "testing"] | ||
classifiers = ["Development Status :: 3 - Alpha"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Software Development :: Testing :: Acceptance", | ||
] | ||
|
||
[tool.poetry.urls] | ||
"Bug Tracker" = "https://github.com/epics-extensions/WeTest/issues" | ||
|
||
[tool.poetry.scripts] | ||
wetest = "wetest.command_line:main" | ||
|