-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
51 lines (47 loc) · 2 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
46
47
48
49
50
51
# ---------------------------------------------------------------------------------------------
# Copyright (c) Leo Hanisch. All rights reserved.
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
# ---------------------------------------------------------------------------------------------
from os import path
from setuptools import find_packages, setup
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), 'r') as rf:
LONG_DESCRIPTION = rf.read()
setup(
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
name='pylintfileheader',
version='1.0.0',
packages=find_packages(exclude=['*test']),
description='Enables pylint to force a consistent file header.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Leo Hanisch',
license='MIT',
package_data={'pylintfileheader': ['ThirdPartyNotices.txt']},
install_requires=['pylint>=3.0,<4.0'],
project_urls={
'Source': 'https://github.com/HaaLeo/pylint-file-header',
'Issue Tracker': 'https://github.com/HaaLeo/pylint-file-header/issues',
'Changelog': 'https://github.com/HaaLeo/pylint-file-header/blob/master/CHANGELOG.md#changelog',
'Funding': 'https://github.com/sponsors/HaaLeo'
},
python_requires='>=3.8',
keywords=[
'pylintfileheader',
'pylint',
'file',
'module',
'header'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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'
]
)