diff --git a/pyproject.toml b/pyproject.toml index dd8e2cc..ead9a79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ResumeGPT" -version = "1.4" +version = "2.0" description = "Tailor your resume to match any job posting effortlessly" authors = [ { name = "Tyler Kline", email = "tylerkline@gmail.com" } @@ -26,7 +26,10 @@ dependencies = [ "requests>=2.25.1", "ruamel.yaml>=0.16.12", "pytest>=8.2.2", - "free-proxy>=1.1.1" + "free-proxy>=1.1.1", + "Jinja2==3.1.4", + "PyYAML==5.3.1", + "pytest-cov==5.0.0" ] keywords = ["resume", "job", "application", "automation", "job search"] classifiers = [ diff --git a/setup.py b/setup.py index 74bd67d..f862799 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="ResumeGPT", - version="1.4", + version="2.0", description="A brief description of your project", author="Tyler Kline", author_email="tylerkline@gmail.com", @@ -20,6 +20,9 @@ "ruamel.yaml>=0.16.12", "pytest>=8.2.2", "free-proxy>=1.1.1", + "Jinja2==3.1.4", + "PyYAML==5.3.1", + "pytest-cov==5.0.0" ], classifiers=[ "Programming Language :: Python :: 3",