File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed
chapter05-managing-projects-with-poetry Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " random-wikipedia-article"
3
3
version = " 0.1.0"
4
- description = " "
4
+ description = " Display extracts from random Wikipedia articles"
5
+ keywords = [" wikipedia" ]
6
+ license = " MIT"
7
+ classifiers = [
8
+ " License :: OSI Approved :: MIT License" ,
9
+ " Development Status :: 3 - Alpha" ,
10
+ " Environment :: Console" ,
11
+ " Topic :: Games/Entertainment :: Fortune Cookies" ,
12
+ ]
5
13
authors = [" Your Name <you@example.com>" ]
6
14
readme = " README.md"
15
+ homepage = " https://yourname.dev/projects/random-wikipedia-article"
16
+ repository = " https://github.com/yourname/random-wikipedia-article"
17
+ documentation = " https://readthedocs.io/random-wikipedia-article"
7
18
packages = [{include = " random_wikipedia_article" , from = " src" }]
8
19
9
20
[tool .poetry .dependencies ]
10
- python = " ^3.12 "
21
+ python = " >=3.10 "
11
22
23
+ [tool .poetry .urls ]
24
+ Issues = " https://github.com/yourname/random-wikipedia-article/issues"
25
+
26
+ [tool .poetry .scripts ]
27
+ random-wikipedia-article = " random_wikipedia_article:main"
12
28
13
29
[build-system ]
14
30
requires = [" poetry-core" ]
You can’t perform that action at this time.
0 commit comments