-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (40 loc) · 1.36 KB
/
setup.py
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
43
44
45
import os
import setuptools
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, 'r') as f:
return f.read()
setuptools.setup(
name="flake8-multiline-containers",
license="MIT",
version="0.0.19",
description="Ensure a consistent format for multiline containers.",
long_description=read('README.rst'),
author="Joshua Fehler",
author_email="[email protected]",
url="https://github.com/jsfehler/flake8-multiline-containers",
py_modules=["flake8_multiline_containers"],
install_requires=[
"flake8 >= 3.7.9",
"attrs >= 19.3.0",
],
entry_points={
'flake8.extension': [
'JS = flake8_multiline_containers:MultilineContainers',
],
},
classifiers=[
"Framework :: Flake8",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
)