-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.17 KB
/
setup.py
File metadata and controls
31 lines (27 loc) · 1.17 KB
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
from setuptools import setup, find_packages
setup(
name='LinterProject',
version='0.1.0',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'flake8',
'pylint',
],
author='Sultan, Atif, Anas',
author_email='4020077@upm.edu.sa, 4211596@upm.edu.sa, 4211594@upm.edu.sa',
description='In the rapidly evolving world of software development, maintaining code quality and security is paramount.'
' This project, Identifying Suspicious Code via ProgramAnalysis,'
' aims to utilize advanced linting tools to detect and address potentialvulnerabilities and inefficiencies in code.'
' By integrating sophisticated linters intothe development pipeline, the project seeks to enhance code '
'reliability and securityproactively.',
keywords='code, analysis, linting, flake8, pylint',
url='http://url-to-your-project',
project_urls={
'Source Code': 'https://github.com/VIZIIER',
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)