-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (44 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
import os
import codecs
#SUPPORTIVE DEVICES OPTIONS
# Define classifiers to categorize the package
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
# Read the long description from a separate file (optional but recommended for readability)
with open('README.md', 'r', encoding='utf-8') as file:
LONG = file.read()
# Define package details
VERSION = '0.0.4'
DESCRIPTION = 'gen-cv-manager` is a Python package designed to help students and professionals create and manage their Cover Letters (CVs) and Resumes with ease. This package provides a straightforward way to generate professional-looking CVs by filling in relevant details such as education, experience, skills, and projects.'
LONG_DESCRIPTION = LONG
# Setup configuration
setup(
name = 'gen-cv-manager',
version = VERSION,
author = "Ankit Kumar",
author_email = '[email protected]',
description = DESCRIPTION,
long_description_content_type = "text/markdown",
long_description = LONG_DESCRIPTION,
# REQUIRED
packages = find_packages(), # Automatically discover packages
install_requires = [], # List external dependencies
include_package_data=True, # Ensure non-Python files are included
package_data={
'resumeGenerator': ['Template_Resume_YourName.docx'], # Specify the path to your template file
},
license='MIT',
classifiers = CLASSIFIERS,
keywords = ["Cover Letter", "CV", "Resume", "Resume Manager", "CV Building"],
url='https://github.com/ankit485803/gen-cv-manager', # Homepage URL
project_urls={
'Documentation': 'https://github.com/ankit485803/gen-cv-manager/blob/main/README.md',
'Source': 'https://github.com/ankit485803/gen-cv-manager',
},
)