aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 6aeaef43434603fd637dfe4e27b52093741349ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="resumejson_converter",
    version="0.3",
    author="neodarz",
    author_email="neodarz@neodarz.net",
    description="A small package for convert json resume with templating to html and pdf",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://git.neodarz.net/neodarz/resumejson_converter.git",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
    ],
    scripts=['bin/resumejson_converter']
)