-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (33 loc) · 1.14 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
from setuptools import find_packages, setup
setup(
name="fourmat",
version="1.0.0",
description="A library for batteries-included linting and autoformatting",
url="https://github.com/4Catalyzer/fourmat",
author="Giacomo Tagliabue",
author_email="[email protected]",
license="MIT",
python_requires=">=3.9",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
keywords="lint autoformat black flake8 isort",
packages=find_packages(),
package_data={"fourmat": ("assets/*.*", "assets/.*")},
install_requires=(
"click>=8",
"black==24.3.0",
"flake8-bugbear>=24,<25",
"flake8>=7,<8",
"isort>=5,<6",
),
entry_points={"console_scripts": ("fourmat = fourmat:cli",)},
)