We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b8601 commit b47caeaCopy full SHA for b47caea
2 files changed
copier.yml
@@ -5,3 +5,7 @@ project_name:
5
module_name:
6
type: str
7
help: What is your python module name?
8
+
9
+author_name:
10
+ type: str
11
+ help: Your first and last name? i.e. Jenny Fantastic
{{project_name}}/pyproject.toml.jinja
@@ -1 +1,18 @@
1
-Hello world
+[project]
2
+name = "{{project_name}}"
3
+license = {file = "LICENSE"}
4
+readme = "README.md"
+[metadata]
+author = "{{author_name}}"
+long_description = { file = "README.md" }
+classifiers = [
+ "Development Status :: 4 - Beta",
12
+ "License :: OSI Approved :: MIT License",
13
+ "Intended Audience :: Developers",
14
+ "Intended Audience :: Science/Research",
15
+ "Operating System :: OS Independent",
16
+ "Programming Language :: Python",
17
+]
18
+dynamic = ["version"]
0 commit comments