-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.04 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cv_parser",
version="0.3",
packages=find_packages(),
scripts=["cv_parser"],
install_requires=[
"pyyaml==5.3.1", "jinja2==2.11.2", "fpdf==1.7.2", "pillow==7.1.1"
],
package_data={
"example": ["*.yml", "*.jpg"],
"renderers": ["*.ttf", "*.html", "*.css", "*.js"],
},
# metadata to display on PyPI
author="Ider Delzo",
author_email="soloidx@gmail.com",
description="This package parses a Curriculum vitae yaml file and generates a pdf and web files",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="resume cv, curriculum vitae",
url="https://github.com/soloidx/cv-parser",
project_urls={
"Bug Tracker": "https://github.com/soloidx/cv-parser/issues",
"Source Code": "https://github.com/soloidx/cv-parser",
},
classifiers=[
"License :: OSI Approved :: MIT License"
]
)