-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (37 loc) · 1.44 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
from setuptools import setup
from flake8_tkinter import __version__
with open("README.md", "r") as file:
long_description = file.read()
flake8_entry_point = "TK = flake8_tkinter:Plugin"
setup(
name="flake8_tkinter",
version=__version__,
description="A flake8 plugin that helps you write better Tkinter code",
author="rdbende",
author_email="rdbende@gmail.com",
url="https://github.com/rdbende/flake8-tkinter",
project_urls={
"Tracker": "https://github.com/rdbende/flake8-tkinter/issues",
},
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
install_requires=["flake8>=3.7"],
packages=["flake8_tkinter", "flake8_tkinter/rules"],
entry_points={"flake8.extension": ["TK = flake8_tkinter:Plugin"]},
license="MIT license",
classifiers=[
"Framework :: Flake8",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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",
],
)