Skip to content

Commit 0415b88

Browse files
committed
Bump version in setup.py, run Python Black over it all and update THIRDPARTYLICENSES
1 parent 32cb7ac commit 0415b88

File tree

7 files changed

+312
-333
lines changed

7 files changed

+312
-333
lines changed

THIRDPARTYLICENSES

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Start of 'THIRDPARTYLICENSES' generated by Python third_party_license_generator at 2021-04-23 12:42:37.743440
1+
Start of 'THIRDPARTYLICENSES' generated by Python third_party_license_generator at 2022-02-18 10:34:53.412274
22

33
----------------------------------------
44

@@ -37,7 +37,7 @@ Requires: n/a
3737
Author: Kenneth Reitz <me@kennethreitz.com>
3838
Home page: https://certifiio.readthedocs.io/en/latest/
3939

40-
This packge contains a modified version of ca-bundle.crt:
40+
This package contains a modified version of ca-bundle.crt:
4141

4242
ca-bundle.crt -- Bundle of CA Root Certificates
4343

@@ -828,4 +828,4 @@ SOFTWARE.
828828

829829
----------------------------------------
830830

831-
End of 'THIRDPARTYLICENSES' generated by Python third_party_license_generator at 2021-04-23 12:42:37.743523
831+
End of 'THIRDPARTYLICENSES' generated by Python third_party_license_generator at 2022-02-18 10:34:53.412320

setup.py

Lines changed: 22 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -14,98 +14,74 @@
1414
here = path.abspath(path.dirname(__file__))
1515

1616
# Get the long description from the README file
17-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
17+
with open(path.join(here, "README.md"), encoding="utf-8") as f:
1818
long_description = f.read()
1919

2020
setup(
21-
name='third-party-license-file-generator',
22-
21+
name="third-party-license-file-generator",
2322
# Versions should comply with PEP440. For a discussion on single-sourcing
2423
# the version across setup.py and the project code, see
2524
# https://packaging.python.org/en/latest/single_source_version.html
26-
version='2021.4.23',
27-
25+
version="2022.2.18",
2826
description='The Python third_party_license_file_generator is aimed at distilling down the appropriate license for one or many pip "requirements" files into a single file; it supports Python2.7 and Python3.',
2927
long_description=long_description,
30-
long_description_content_type='text/markdown',
31-
28+
long_description_content_type="text/markdown",
3229
# The project's main homepage.
33-
url='https://github.com/ftpsolutions/python-third-party-license-file-generator',
34-
30+
url="https://github.com/ftpsolutions/python-third-party-license-file-generator",
3531
# Author details
36-
author='Edward Beech',
37-
author_email='edward.beech@ftpsolutions.com.au',
38-
32+
author="Edward Beech",
33+
author_email="edward.beech@ftpsolutions.com.au",
3934
# Choose your license
40-
license='MIT',
41-
35+
license="MIT",
4236
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
4337
classifiers=[
4438
# How mature is this project? Common values are
4539
# 3 - Alpha
4640
# 4 - Beta
4741
# 5 - Production/Stable
48-
'Development Status :: 3 - Alpha',
49-
42+
"Development Status :: 3 - Alpha",
5043
# Indicate who your project is intended for
51-
'Intended Audience :: Developers',
52-
'Topic :: Software Development :: Libraries',
53-
44+
"Intended Audience :: Developers",
45+
"Topic :: Software Development :: Libraries",
5446
# Pick your license as you wish (should match "license" above)
55-
'License :: OSI Approved :: MIT License',
56-
47+
"License :: OSI Approved :: MIT License",
5748
# Specify the Python versions you support here. In particular, ensure
5849
# that you indicate whether you support Python 2, Python 3 or both.
59-
'Programming Language :: Python :: 2.7',
60-
'Programming Language :: Python :: 3.6',
50+
"Programming Language :: Python :: 2.7",
51+
"Programming Language :: Python :: 3.6",
6152
],
62-
6353
# What does your project relate to?
64-
keywords='sample setuptools development',
65-
54+
keywords="sample setuptools development",
6655
# You can just specify the packages manually here if your project is
6756
# simple. Or you can use find_packages().
68-
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
69-
57+
packages=find_packages(exclude=["contrib", "docs", "tests"]),
7058
# Alternatively, if you want to distribute just a my_module.py, uncomment
7159
# this:
7260
# py_modules=["my_module"],
73-
7461
# List run-time dependencies here. These will be installed by pip when
7562
# your project is installed. For an analysis of "install_requires" vs pip's
7663
# requirements files see:
7764
# https://packaging.python.org/en/latest/requirements.html
78-
install_requires=[
79-
'requests>=2.25',
80-
'PyYAML>=5.4'
81-
],
82-
65+
install_requires=["requests>=2.25", "PyYAML>=5.4"],
8366
# List additional groups of dependencies here (e.g. development
8467
# dependencies). You can install these using the following syntax,
8568
# for example:
8669
# $ pip install -e .[dev,test]
8770
extras_require={
88-
'dev': ['check-manifest'],
89-
'test': ['coverage'],
71+
"dev": ["check-manifest"],
72+
"test": ["coverage"],
9073
},
91-
9274
# If there are data files included in your packages that need to be
9375
# installed, specify them here. If using Python 2.6 or less, then these
9476
# have to be included in MANIFEST.in as well.
95-
package_data={
96-
},
97-
77+
package_data={},
9878
# Although 'package_data' is the preferred approach, in some case you may
9979
# need to place data files outside of your packages. See:
10080
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
10181
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
102-
data_files=[
103-
('', ['README.md'])
104-
],
105-
82+
data_files=[("", ["README.md"])],
10683
# To provide executable scripts, use entry points in preference to the
10784
# "scripts" keyword. Entry points provide cross-platform support and allow
10885
# pip to create the appropriate form of executable for the target platform.
109-
entry_points={
110-
},
86+
entry_points={},
11187
)

0 commit comments

Comments
 (0)