forked from Eshe/competition-vd
41 lines
1.2 KiB
Python
Executable File
41 lines
1.2 KiB
Python
Executable File
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='vulnerability_detection',
|
|
version='0.1.0',
|
|
packages=find_packages(exclude=['tests*']),
|
|
description='A vulnerability detection and classification system',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/yourusername/vulnerability_detection',
|
|
install_requires=[
|
|
'numpy',
|
|
'pandas',
|
|
'scikit-learn',
|
|
'torch',
|
|
'transformers',
|
|
'xgboost',
|
|
'matplotlib',
|
|
'seaborn',
|
|
'dash',
|
|
'plotly',
|
|
'pyyaml',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
],
|
|
python_requires='>=3.7',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'run_preprocessing=scripts.run_preprocessing:main',
|
|
'run_training=scripts.run_training:main',
|
|
'run_evaluation=scripts.run_evaluation:main',
|
|
],
|
|
},
|
|
) |