forked from notsag/yaml-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.54 KB
/
setup.py
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
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import re
from setuptools import setup
with open("README.md") as f:
README = f.read()
with open("yaml_resume/__init__.py") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setup(
name="yaml-resume",
packages=["yaml_resume", "yaml_resume.resume", "yaml_resume.validator"],
package_data={"yaml_resume": ["templates/*"]},
description="Command line interface to build/validate YAML resumes",
long_description=README,
long_description_content_type="text/markdown",
version=version,
url="https://github.com/notsag/yaml-resume",
author="Maxime GASTON",
author_email="[email protected]",
license="gpl-3.0",
keywords=["resume", "yaml"],
install_requires=["click", "pyyaml", "cerberus", "jinja2", "WeasyPrint"],
entry_points={"console_scripts": ["yaml-resume = yaml_resume.cli:cli"]},
tests_require=["pytest", "pytest-cov"],
python_requires=">=3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)