File size: 1,234 Bytes
e8013a0 |
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 |
from setuptools import setup, find_packages
setup(
name='CVGenius',
version='0.1.0',
description='A comprehensive CV management application',
author='Ibrahim COULIBALY',
author_email='icoulbi4@gmail.com',
url='https://github.com/coulibaly-b/CVGenius',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=[
'pytest',
'pyyaml',
# Add other dependencies here
],
extras_require={
'dev': [
'pytest-cov',
'flake8',
'black',
# Add other development dependencies here
],
},
entry_points={
'console_scripts': [
# If you have any scripts to run
# 'script_name = module:function',
],
},
classifiers=[
'Development Status :: 3 - Alpha', # Adjust as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', # Adjust if different
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.7',
)
|