-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.48 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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as file:
long_description = file.read()
setup(
name='fix8',
version='0.1.9',
url='https://github.com/PeterJCLaw/fix8',
project_urls={
'Documentation': 'https://github.com/PeterJCLaw/fix8/blob/master/README.md',
'Code': 'https://github.com/PeterJCLaw/fix8',
'Issue tracker': 'https://github.com/PeterJCLaw/fix8/issues',
},
description="Automatic fix for Python linting issues found by Flake8",
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['fix8'],
entry_points={
'console_scripts': ['fix8 = fix8:main'],
},
author="Peter Law",
author_email='PeterJCLaw@gmail.com',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'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 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Utilities',
],
python_requires='>=3.7',
install_requires=[
'flake8',
'parso',
],
zip_safe=True,
)