|
|
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', |
|
|
|
|
|
], |
|
|
extras_require={ |
|
|
'dev': [ |
|
|
'pytest-cov', |
|
|
'flake8', |
|
|
'black', |
|
|
|
|
|
], |
|
|
}, |
|
|
entry_points={ |
|
|
'console_scripts': [ |
|
|
|
|
|
|
|
|
], |
|
|
}, |
|
|
classifiers=[ |
|
|
'Development Status :: 3 - Alpha', |
|
|
'Intended Audience :: Developers', |
|
|
'License :: OSI Approved :: MIT License', |
|
|
'Programming Language :: Python :: 3.10', |
|
|
'Programming Language :: Python :: 3.9', |
|
|
'Programming Language :: Python :: 3.8', |
|
|
'Programming Language :: Python :: 3.7', |
|
|
], |
|
|
python_requires='>=3.7', |
|
|
) |
|
|
|