generated from canadian-coding/python-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a63cf2
commit c05ac72
Showing
3 changed files
with
20 additions
and
10 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
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
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ def get_content(*filename:str) -> str: | |
|
||
setuptools.setup( | ||
name = "ezcv", | ||
version = "0.2.0", | ||
version = "0.2.1", | ||
author = "Kieran Wood", | ||
author_email = "[email protected]", | ||
description = "An easy to use personal site generator", | ||
|
@@ -48,14 +48,15 @@ def get_content(*filename:str) -> str: | |
}, | ||
|
||
install_requires = [ | ||
"docopt", # Used for argument parsing if you are writing a CLI | ||
"pyyaml", # Used for config file parsing | ||
"jinja2", # used as middlewear for generating templates | ||
"markdown", # Used to parse markdown | ||
"tqdm", # Used to generate progress bars | ||
"requests", # Used to download remote themes | ||
"exifread", # Used to read exif data from images | ||
"python-markdown-math" # Used to render latex math equations | ||
"docopt", # Used for argument parsing if you are writing a CLI | ||
"pyyaml", # Used for config file parsing | ||
"jinja2", # used as middlewear for generating templates | ||
"markdown", # Used to parse markdown | ||
"tqdm", # Used to generate progress bars | ||
"requests", # Used to download remote themes | ||
"exifread", # Used to read exif data from images | ||
"python-markdown-math", # Used to render latex math equations | ||
"colored" | ||
], | ||
extras_require = { | ||
"dev" : ["mkdocs", # Used to create HTML versions of the markdown docs in the docs directory | ||
|