-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (40 loc) · 1.25 KB
/
setup.py
File metadata and controls
executable file
·42 lines (40 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
import setuptools
setuptools.setup(
name='flake8-intsights',
version='0.4.0',
url='https://github.com/Intsights/flake8-intsights',
project_urls={
'Source': 'https://github.com/Intsights/flake8-intsights',
},
license='MIT',
description='Uncompromising and opinionated flake8 plugin which follows Intsights\' practices',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='flake8 conventions style lint linter intsights',
python_requires='>=3.7',
zip_safe=False,
install_requires=[
'astroid==2.15.8',
'flake8',
'flake8-assertive',
'flake8-comprehensions',
],
packages=[
'flake8_intsights',
'flake8_intsights.checkers',
],
entry_points={
'flake8.extension': [
'I = flake8_intsights.checker:Checker',
],
},
)