-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 960 Bytes
/
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
# Filename : setup.py
# Author : Jon Kelley <[email protected]>
# Description : Interactive online resume for jon-kelley.com
from setuptools import setup, find_packages
from sys import path
from os import environ
path.insert(0, '.')
NAME = "myresume"
if __name__ == "__main__":
setup(
name=NAME,
version='0.0.1',
author="Jonathan Kelley",
author_email="[email protected]",
url="https://github.com/jondkelley/python_resume",
license='ASLv2',
packages=find_packages(),
include_package_data=True,
package_dir={NAME: NAME},
description="myresume - Interactive online resume for jon-kelley.com",
install_requires=['Flask==2.2.2', 'markdown', 'unidecode'],
# , 'python-slugify', 'markdown', 'Jinja2==3.0.3', 'werkzeug==2.0.2'],
entry_points={
'console_scripts': ['myresume = myresume.runserver:main'],
},
zip_safe=False,
)