Skip to content

Commit fe5a0b0

Browse files
authored
Update license field and trove classifiers (#4)
* Update license field and trove classifiers * Ignore pyright on untyped test
1 parent 32947a1 commit fe5a0b0

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

msrc-appconfig-attrs/setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
author="Vassily Lyutsarev",
1919
author_email="vassilyl@microsoft.com",
2020
description="Plugin for msrc-appconfig.",
21+
license="MIT License",
2122
long_description=long_description,
2223
long_description_content_type="text/markdown",
2324
url="https://github.com/microsoft/msrc-appconfig",
@@ -26,7 +27,12 @@
2627
install_requires=["msrc-appconfig", "attrs"],
2728
classifiers=[
2829
"Programming Language :: Python :: 3",
29-
# "License :: OSI Approved :: MIT License",
30+
"Programming Language :: Python :: 3.6",
31+
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: 3.10",
35+
"License :: OSI Approved :: MIT License",
3036
"Operating System :: OS Independent",
3137
],
3238
python_requires='>=3.6',

msrc-appconfig-attrs/tests/appconfig_attrs_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Base:
4040

4141
@attr.s()
4242
class NoTypeAnnotation():
43-
f = attr.ib()
43+
f = attr.ib() # type: ignore
4444

4545

4646
@attr.s(frozen=True, kw_only=True, auto_attribs=True)

msrc-appconfig-dataclasses/setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
author="Vassily Lyutsarev",
1919
author_email="vassilyl@microsoft.com",
2020
description="Plugin for msrc-appconfig.",
21+
license="MIT License",
2122
long_description=long_description,
2223
long_description_content_type="text/markdown",
2324
url="https://github.com/microsoft/msrc-appconfig",
@@ -26,7 +27,11 @@
2627
install_requires=["msrc-appconfig"],
2728
classifiers=[
2829
"Programming Language :: Python :: 3",
29-
# "License :: OSI Approved :: MIT License",
30+
"Programming Language :: Python :: 3.7",
31+
"Programming Language :: Python :: 3.8",
32+
"Programming Language :: Python :: 3.9",
33+
"Programming Language :: Python :: 3.10",
34+
"License :: OSI Approved :: MIT License",
3035
"Operating System :: OS Independent",
3136
],
3237
python_requires='>=3.7',

msrc-appconfig-param/setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
author="Vassily Lyutsarev",
1818
author_email="vassilyl@microsoft.com",
1919
description="Plugin for msrc-appconfig.",
20+
license="MIT License",
2021
long_description=long_description,
2122
long_description_content_type="text/markdown",
2223
url="https://github.com/microsoft/msrc-appconfig",
@@ -25,7 +26,12 @@
2526
install_requires=["msrc-appconfig", "param==1.9.2"],
2627
classifiers=[
2728
"Programming Language :: Python :: 3",
28-
# "License :: OSI Approved :: MIT License",
29+
"Programming Language :: Python :: 3.6",
30+
"Programming Language :: Python :: 3.7",
31+
"Programming Language :: Python :: 3.8",
32+
"Programming Language :: Python :: 3.9",
33+
"Programming Language :: Python :: 3.10",
34+
"License :: OSI Approved :: MIT License",
2935
"Operating System :: OS Independent",
3036
],
3137
python_requires='>=3.6',

msrc-appconfig/setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
author_email="vassilyl@microsoft.com",
1919
description="Orchestrates application configuration from config files, "
2020
"shell variables and command line arguments.",
21+
license="MIT License",
2122
long_description=long_description,
2223
long_description_content_type="text/markdown",
2324
url="https://github.com/microsoft/msrc-appconfig",
@@ -40,7 +41,11 @@
4041
},
4142
classifiers=[
4243
"Programming Language :: Python :: 3",
43-
# "License :: OSI Approved :: MIT License",
44+
"Programming Language :: Python :: 3.7",
45+
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"License :: OSI Approved :: MIT License",
4449
"Operating System :: OS Independent",
4550
],
4651
python_requires='>=3.7',

0 commit comments

Comments
 (0)