Update to 3.2.0
This commit is contained in:
parent
0adf717a96
commit
f663ce46fd
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,3 +12,4 @@
|
|||||||
/flit-2.2.0.tar.gz
|
/flit-2.2.0.tar.gz
|
||||||
/flit-2.3.0.tar.gz
|
/flit-2.3.0.tar.gz
|
||||||
/flit-3.0.0.tar.gz
|
/flit-3.0.0.tar.gz
|
||||||
|
/flit-3.2.0.tar.gz
|
||||||
|
254
b81b1da55e.patch
254
b81b1da55e.patch
@ -1,254 +0,0 @@
|
|||||||
From b81b1da55ef0f2768413669725d2874fcb0c29fb Mon Sep 17 00:00:00 2001
|
|
||||||
From: Kale Kundert <kale@thekunderts.net>
|
|
||||||
Date: Sun, 2 Feb 2020 19:22:34 -0500
|
|
||||||
Subject: [PATCH] Replace 'pytoml' with 'toml'
|
|
||||||
|
|
||||||
The pytoml package is deprecated, and doesn't support the most recent
|
|
||||||
TOML standard (e.g. dotted keys).
|
|
||||||
---
|
|
||||||
doc/development.rst | 2 +-
|
|
||||||
doc/pyproject_toml.rst | 2 +-
|
|
||||||
flit/init.py | 2 +-
|
|
||||||
flit/tomlify.py | 8 ++++----
|
|
||||||
flit_core/flit_core/build_thyself.py | 2 +-
|
|
||||||
flit_core/flit_core/config.py | 2 +-
|
|
||||||
flit_core/flit_core/sdist.py | 2 +-
|
|
||||||
flit_core/flit_core/wheel.py | 2 +-
|
|
||||||
pyproject.toml | 2 +-
|
|
||||||
tests/test_init.py | 12 ++++++------
|
|
||||||
tests/test_tomlify.py | 4 ++--
|
|
||||||
tox.ini | 2 +-
|
|
||||||
12 files changed, 21 insertions(+), 21 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/doc/development.rst b/doc/development.rst
|
|
||||||
index 9b8dc5e..f714999 100644
|
|
||||||
--- a/doc/development.rst
|
|
||||||
+++ b/doc/development.rst
|
|
||||||
@@ -5,7 +5,7 @@ To get a development installation of Flit itself::
|
|
||||||
|
|
||||||
git clone https://github.com/takluyver/flit.git
|
|
||||||
cd flit
|
|
||||||
- python3 -m pip install docutils requests pytoml
|
|
||||||
+ python3 -m pip install docutils requests toml
|
|
||||||
python3 bootstrap_dev.py
|
|
||||||
|
|
||||||
This links Flit into the current Python environment, so you can make changes
|
|
||||||
diff --git a/doc/pyproject_toml.rst b/doc/pyproject_toml.rst
|
|
||||||
index f9ddc7f..8d38bf9 100644
|
|
||||||
--- a/doc/pyproject_toml.rst
|
|
||||||
+++ b/doc/pyproject_toml.rst
|
|
||||||
@@ -120,7 +120,7 @@ Here's the full metadata section from flit itself:
|
|
||||||
"flit_core>=2.2.0",
|
|
||||||
"requests",
|
|
||||||
"docutils",
|
|
||||||
- "pytoml",
|
|
||||||
+ "toml",
|
|
||||||
"zipfile36; python_version in '3.3 3.4 3.5'",
|
|
||||||
]
|
|
||||||
requires-python=">=3.5"
|
|
||||||
diff --git a/flit/init.py b/flit/init.py
|
|
||||||
index f7ea93a..b0c77c6 100644
|
|
||||||
--- a/flit/init.py
|
|
||||||
+++ b/flit/init.py
|
|
||||||
@@ -5,7 +5,7 @@
|
|
||||||
from pathlib import Path
|
|
||||||
import re
|
|
||||||
import sys
|
|
||||||
-import pytoml as toml
|
|
||||||
+import toml
|
|
||||||
|
|
||||||
def get_data_dir():
|
|
||||||
"""Get the directory path for flit user data files.
|
|
||||||
diff --git a/flit/tomlify.py b/flit/tomlify.py
|
|
||||||
index 0c8db69..a9c9c60 100644
|
|
||||||
--- a/flit/tomlify.py
|
|
||||||
+++ b/flit/tomlify.py
|
|
||||||
@@ -5,7 +5,7 @@
|
|
||||||
import configparser
|
|
||||||
import os
|
|
||||||
from pathlib import Path
|
|
||||||
-import pytoml
|
|
||||||
+import toml
|
|
||||||
|
|
||||||
from .config import metadata_list_fields
|
|
||||||
from .init import TEMPLATE
|
|
||||||
@@ -40,11 +40,11 @@ def convert(path):
|
|
||||||
|
|
||||||
written_entrypoints = False
|
|
||||||
with Path('pyproject.toml').open('w', encoding='utf-8') as f:
|
|
||||||
- f.write(TEMPLATE.format(metadata=pytoml.dumps(metadata)))
|
|
||||||
+ f.write(TEMPLATE.format(metadata=toml.dumps(metadata)))
|
|
||||||
|
|
||||||
if scripts:
|
|
||||||
f.write('\n[tool.flit.scripts]\n')
|
|
||||||
- pytoml.dump(scripts, f)
|
|
||||||
+ toml.dump(scripts, f)
|
|
||||||
|
|
||||||
for groupname, group in entrypoints.items():
|
|
||||||
if not dict(group):
|
|
||||||
@@ -53,7 +53,7 @@ def convert(path):
|
|
||||||
if '.' in groupname:
|
|
||||||
groupname = '"{}"'.format(groupname)
|
|
||||||
f.write('\n[tool.flit.entrypoints.{}]\n'.format(groupname))
|
|
||||||
- pytoml.dump(OrderedDict(group), f)
|
|
||||||
+ toml.dump(OrderedDict(group), f)
|
|
||||||
written_entrypoints = True
|
|
||||||
|
|
||||||
print("Written 'pyproject.toml'")
|
|
||||||
diff --git a/flit_core/flit_core/build_thyself.py b/flit_core/flit_core/build_thyself.py
|
|
||||||
index 7daf67f..f3aaf7c 100644
|
|
||||||
--- a/flit_core/flit_core/build_thyself.py
|
|
||||||
+++ b/flit_core/flit_core/build_thyself.py
|
|
||||||
@@ -25,7 +25,7 @@
|
|
||||||
'summary': ('Distribution-building parts of Flit. '
|
|
||||||
'See flit package for more information'),
|
|
||||||
'requires_dist': [
|
|
||||||
- 'pytoml',
|
|
||||||
+ 'toml',
|
|
||||||
],
|
|
||||||
'requires_python': '>=3.4',
|
|
||||||
'classifiers': [
|
|
||||||
diff --git a/flit_core/flit_core/config.py b/flit_core/flit_core/config.py
|
|
||||||
index 0af9c00..6ed20d3 100644
|
|
||||||
--- a/flit_core/flit_core/config.py
|
|
||||||
+++ b/flit_core/flit_core/config.py
|
|
||||||
@@ -3,7 +3,7 @@
|
|
||||||
import logging
|
|
||||||
import os
|
|
||||||
import os.path as osp
|
|
||||||
-import pytoml as toml
|
|
||||||
+import toml
|
|
||||||
import re
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
|
||||||
diff --git a/flit_core/flit_core/sdist.py b/flit_core/flit_core/sdist.py
|
|
||||||
index 1fe5bb4..963b4e5 100644
|
|
||||||
--- a/flit_core/flit_core/sdist.py
|
|
||||||
+++ b/flit_core/flit_core/sdist.py
|
|
||||||
@@ -95,7 +95,7 @@ def __init__(self, module, metadata, cfgdir, reqs_by_extra, entrypoints,
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def from_ini_path(cls, ini_path: Path):
|
|
||||||
- # Local import so bootstrapping doesn't try to load pytoml
|
|
||||||
+ # Local import so bootstrapping doesn't try to load toml
|
|
||||||
from .config import read_flit_config
|
|
||||||
ini_info = read_flit_config(ini_path)
|
|
||||||
srcdir = ini_path.parent
|
|
||||||
diff --git a/flit_core/flit_core/wheel.py b/flit_core/flit_core/wheel.py
|
|
||||||
index 1550846..2bc55e1 100644
|
|
||||||
--- a/flit_core/flit_core/wheel.py
|
|
||||||
+++ b/flit_core/flit_core/wheel.py
|
|
||||||
@@ -83,7 +83,7 @@ def __init__(self, directory, module, metadata, entrypoints, target_fp):
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def from_ini_path(cls, ini_path, target_fp):
|
|
||||||
- # Local import so bootstrapping doesn't try to load pytoml
|
|
||||||
+ # Local import so bootstrapping doesn't try to load toml
|
|
||||||
from .config import read_flit_config
|
|
||||||
directory = ini_path.parent
|
|
||||||
ini_info = read_flit_config(ini_path)
|
|
||||||
diff --git a/pyproject.toml b/pyproject.toml
|
|
||||||
index ac8d001..0af74b2 100644
|
|
||||||
--- a/pyproject.toml
|
|
||||||
+++ b/pyproject.toml
|
|
||||||
@@ -11,7 +11,7 @@ requires=[
|
|
||||||
"flit_core>=3.0.0",
|
|
||||||
"requests",
|
|
||||||
"docutils",
|
|
||||||
- "pytoml",
|
|
||||||
+ "toml",
|
|
||||||
"zipfile36; python_version in '3.3 3.4 3.5'",
|
|
||||||
]
|
|
||||||
requires-python=">=3.5"
|
|
||||||
diff --git a/tests/test_init.py b/tests/test_init.py
|
|
||||||
index fb8ad4d..7330ff5 100644
|
|
||||||
--- a/tests/test_init.py
|
|
||||||
+++ b/tests/test_init.py
|
|
||||||
@@ -6,7 +6,7 @@
|
|
||||||
from unittest.mock import patch
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
-import pytoml
|
|
||||||
+import toml
|
|
||||||
|
|
||||||
from flit import init
|
|
||||||
|
|
||||||
@@ -107,7 +107,7 @@ def test_init():
|
|
||||||
generated = Path(td) / 'pyproject.toml'
|
|
||||||
assert_isfile(generated)
|
|
||||||
with generated.open() as f:
|
|
||||||
- data = pytoml.load(f)
|
|
||||||
+ data = toml.load(f)
|
|
||||||
assert data['tool']['flit']['metadata'][
|
|
||||||
'author-email'] == "test@example.com"
|
|
||||||
license = Path(td) / 'LICENSE'
|
|
||||||
@@ -131,7 +131,7 @@ def test_init_homepage_and_license_are_optional():
|
|
||||||
ti = init.TerminalIniter(td)
|
|
||||||
ti.initialise()
|
|
||||||
with Path(td, 'pyproject.toml').open() as f:
|
|
||||||
- data = pytoml.load(f)
|
|
||||||
+ data = toml.load(f)
|
|
||||||
assert not Path(td, 'LICENSE').exists()
|
|
||||||
metadata = data['tool']['flit']['metadata']
|
|
||||||
assert metadata == {
|
|
||||||
@@ -154,7 +154,7 @@ def test_init_homepage_validator():
|
|
||||||
ti = init.TerminalIniter(td)
|
|
||||||
ti.initialise()
|
|
||||||
with Path(td, 'pyproject.toml').open() as f:
|
|
||||||
- data = pytoml.load(f)
|
|
||||||
+ data = toml.load(f)
|
|
||||||
metadata = data['tool']['flit']['metadata']
|
|
||||||
assert metadata == {
|
|
||||||
'author': 'Test Author',
|
|
||||||
@@ -176,7 +176,7 @@ def test_author_email_field_is_optional():
|
|
||||||
ti = init.TerminalIniter(td)
|
|
||||||
ti.initialise()
|
|
||||||
with Path(td, 'pyproject.toml').open() as f:
|
|
||||||
- data = pytoml.load(f)
|
|
||||||
+ data = toml.load(f)
|
|
||||||
assert not Path(td, 'LICENSE').exists()
|
|
||||||
metadata = data['tool']['flit']['metadata']
|
|
||||||
assert metadata == {
|
|
||||||
@@ -216,7 +216,7 @@ def test_init_readme_found_yes_choosen():
|
|
||||||
ti = init.TerminalIniter(td)
|
|
||||||
ti.initialise()
|
|
||||||
with Path(td, 'pyproject.toml').open() as f:
|
|
||||||
- data = pytoml.load(f)
|
|
||||||
+ data = toml.load(f)
|
|
||||||
|
|
||||||
metadata = data['tool']['flit']['metadata']
|
|
||||||
assert metadata == {
|
|
||||||
diff --git a/tests/test_tomlify.py b/tests/test_tomlify.py
|
|
||||||
index 2bd75dc..a7b7978 100644
|
|
||||||
--- a/tests/test_tomlify.py
|
|
||||||
+++ b/tests/test_tomlify.py
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
import os
|
|
||||||
from pathlib import Path
|
|
||||||
-import pytoml
|
|
||||||
+import toml
|
|
||||||
from shutil import copy
|
|
||||||
from testpath import assert_isfile
|
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ def test_tomlify(copy_sample, monkeypatch):
|
|
||||||
assert_isfile(pyproject_toml)
|
|
||||||
|
|
||||||
with pyproject_toml.open(encoding='utf-8') as f:
|
|
||||||
- content = pytoml.load(f)
|
|
||||||
+ content = toml.load(f)
|
|
||||||
|
|
||||||
assert 'build-system' in content
|
|
||||||
assert 'tool' in content
|
|
||||||
diff --git a/tox.ini b/tox.ini
|
|
||||||
index 08ce1bf..d1025e1 100644
|
|
||||||
--- a/tox.ini
|
|
||||||
+++ b/tox.ini
|
|
||||||
@@ -18,7 +18,7 @@ deps =
|
|
||||||
testpath
|
|
||||||
responses
|
|
||||||
docutils
|
|
||||||
- pytoml
|
|
||||||
+ toml
|
|
||||||
pytest>=2.7.3
|
|
||||||
pytest-cov
|
|
||||||
|
|
130
classifiers.lst
130
classifiers.lst
@ -10,6 +10,35 @@ Environment :: Console :: Curses
|
|||||||
Environment :: Console :: Framebuffer
|
Environment :: Console :: Framebuffer
|
||||||
Environment :: Console :: Newt
|
Environment :: Console :: Newt
|
||||||
Environment :: Console :: svgalib
|
Environment :: Console :: svgalib
|
||||||
|
Environment :: GPU
|
||||||
|
Environment :: GPU :: NVIDIA CUDA
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 1.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 1.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 2.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 2.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 2.2
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 2.3
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 3.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 3.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 3.2
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 4.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 4.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 4.2
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 5.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 5.5
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 6.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 6.5
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 7.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 7.5
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 8.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 9.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 9.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 9.2
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 10.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 10.1
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 10.2
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 11.0
|
||||||
|
Environment :: GPU :: NVIDIA CUDA :: 11.1
|
||||||
Environment :: Handhelds/PDA's
|
Environment :: Handhelds/PDA's
|
||||||
Environment :: MacOS X
|
Environment :: MacOS X
|
||||||
Environment :: MacOS X :: Aqua
|
Environment :: MacOS X :: Aqua
|
||||||
@ -25,11 +54,14 @@ Environment :: Web Environment :: Mozilla
|
|||||||
Environment :: Web Environment :: ToscaWidgets
|
Environment :: Web Environment :: ToscaWidgets
|
||||||
Environment :: Win32 (MS Windows)
|
Environment :: Win32 (MS Windows)
|
||||||
Environment :: X11 Applications
|
Environment :: X11 Applications
|
||||||
Environment :: X11 Applications :: Gnome
|
|
||||||
Environment :: X11 Applications :: GTK
|
Environment :: X11 Applications :: GTK
|
||||||
|
Environment :: X11 Applications :: Gnome
|
||||||
Environment :: X11 Applications :: KDE
|
Environment :: X11 Applications :: KDE
|
||||||
Environment :: X11 Applications :: Qt
|
Environment :: X11 Applications :: Qt
|
||||||
|
Framework :: AWS CDK
|
||||||
|
Framework :: AWS CDK :: 1
|
||||||
Framework :: AiiDA
|
Framework :: AiiDA
|
||||||
|
Framework :: Ansible
|
||||||
Framework :: AsyncIO
|
Framework :: AsyncIO
|
||||||
Framework :: BEAT
|
Framework :: BEAT
|
||||||
Framework :: BFG
|
Framework :: BFG
|
||||||
@ -45,31 +77,36 @@ Framework :: CherryPy
|
|||||||
Framework :: CubicWeb
|
Framework :: CubicWeb
|
||||||
Framework :: Dash
|
Framework :: Dash
|
||||||
Framework :: Django
|
Framework :: Django
|
||||||
Framework :: Django :: 1.10
|
|
||||||
Framework :: Django :: 1.11
|
|
||||||
Framework :: Django :: 1.4
|
Framework :: Django :: 1.4
|
||||||
Framework :: Django :: 1.5
|
Framework :: Django :: 1.5
|
||||||
Framework :: Django :: 1.6
|
Framework :: Django :: 1.6
|
||||||
Framework :: Django :: 1.7
|
Framework :: Django :: 1.7
|
||||||
Framework :: Django :: 1.8
|
Framework :: Django :: 1.8
|
||||||
Framework :: Django :: 1.9
|
Framework :: Django :: 1.9
|
||||||
|
Framework :: Django :: 1.10
|
||||||
|
Framework :: Django :: 1.11
|
||||||
Framework :: Django :: 2.0
|
Framework :: Django :: 2.0
|
||||||
Framework :: Django :: 2.1
|
Framework :: Django :: 2.1
|
||||||
Framework :: Django :: 2.2
|
Framework :: Django :: 2.2
|
||||||
Framework :: Django :: 3.0
|
Framework :: Django :: 3.0
|
||||||
|
Framework :: Django :: 3.1
|
||||||
|
Framework :: Django :: 3.2
|
||||||
Framework :: Django CMS
|
Framework :: Django CMS
|
||||||
Framework :: Django CMS :: 3.4
|
Framework :: Django CMS :: 3.4
|
||||||
Framework :: Django CMS :: 3.5
|
Framework :: Django CMS :: 3.5
|
||||||
Framework :: Django CMS :: 3.6
|
Framework :: Django CMS :: 3.6
|
||||||
Framework :: Django CMS :: 3.7
|
Framework :: Django CMS :: 3.7
|
||||||
|
Framework :: Django CMS :: 3.8
|
||||||
Framework :: Flake8
|
Framework :: Flake8
|
||||||
Framework :: Flask
|
Framework :: Flask
|
||||||
Framework :: Hypothesis
|
Framework :: Hypothesis
|
||||||
Framework :: IDLE
|
Framework :: IDLE
|
||||||
Framework :: IPython
|
Framework :: IPython
|
||||||
Framework :: Jupyter
|
Framework :: Jupyter
|
||||||
|
Framework :: Kedro
|
||||||
Framework :: Lektor
|
Framework :: Lektor
|
||||||
Framework :: Masonite
|
Framework :: Masonite
|
||||||
|
Framework :: Matplotlib
|
||||||
Framework :: Nengo
|
Framework :: Nengo
|
||||||
Framework :: Odoo
|
Framework :: Odoo
|
||||||
Framework :: Opps
|
Framework :: Opps
|
||||||
@ -88,6 +125,7 @@ Framework :: Plone :: 5.0
|
|||||||
Framework :: Plone :: 5.1
|
Framework :: Plone :: 5.1
|
||||||
Framework :: Plone :: 5.2
|
Framework :: Plone :: 5.2
|
||||||
Framework :: Plone :: 5.3
|
Framework :: Plone :: 5.3
|
||||||
|
Framework :: Plone :: 6.0
|
||||||
Framework :: Plone :: Addon
|
Framework :: Plone :: Addon
|
||||||
Framework :: Plone :: Core
|
Framework :: Plone :: Core
|
||||||
Framework :: Plone :: Theme
|
Framework :: Plone :: Theme
|
||||||
@ -103,7 +141,6 @@ Framework :: Setuptools Plugin
|
|||||||
Framework :: Sphinx
|
Framework :: Sphinx
|
||||||
Framework :: Sphinx :: Extension
|
Framework :: Sphinx :: Extension
|
||||||
Framework :: Sphinx :: Theme
|
Framework :: Sphinx :: Theme
|
||||||
Framework :: tox
|
|
||||||
Framework :: Trac
|
Framework :: Trac
|
||||||
Framework :: Trio
|
Framework :: Trio
|
||||||
Framework :: Tryton
|
Framework :: Tryton
|
||||||
@ -117,11 +154,13 @@ Framework :: Wagtail :: 2
|
|||||||
Framework :: ZODB
|
Framework :: ZODB
|
||||||
Framework :: Zope
|
Framework :: Zope
|
||||||
Framework :: Zope2
|
Framework :: Zope2
|
||||||
Framework :: Zope :: 2
|
|
||||||
Framework :: Zope3
|
Framework :: Zope3
|
||||||
|
Framework :: Zope :: 2
|
||||||
Framework :: Zope :: 3
|
Framework :: Zope :: 3
|
||||||
Framework :: Zope :: 4
|
Framework :: Zope :: 4
|
||||||
Framework :: Zope :: 5
|
Framework :: Zope :: 5
|
||||||
|
Framework :: napari
|
||||||
|
Framework :: tox
|
||||||
Intended Audience :: Customer Service
|
Intended Audience :: Customer Service
|
||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
Intended Audience :: Education
|
Intended Audience :: Education
|
||||||
@ -144,9 +183,9 @@ License :: DFSG approved
|
|||||||
License :: Eiffel Forum License (EFL)
|
License :: Eiffel Forum License (EFL)
|
||||||
License :: Free For Educational Use
|
License :: Free For Educational Use
|
||||||
License :: Free For Home Use
|
License :: Free For Home Use
|
||||||
|
License :: Free To Use But Restricted
|
||||||
License :: Free for non-commercial use
|
License :: Free for non-commercial use
|
||||||
License :: Freely Distributable
|
License :: Freely Distributable
|
||||||
License :: Free To Use But Restricted
|
|
||||||
License :: Freeware
|
License :: Freeware
|
||||||
License :: GUST Font License 1.0
|
License :: GUST Font License 1.0
|
||||||
License :: GUST Font License 2006-09-30
|
License :: GUST Font License 2006-09-30
|
||||||
@ -158,8 +197,8 @@ License :: OSI Approved :: Apache Software License
|
|||||||
License :: OSI Approved :: Apple Public Source License
|
License :: OSI Approved :: Apple Public Source License
|
||||||
License :: OSI Approved :: Artistic License
|
License :: OSI Approved :: Artistic License
|
||||||
License :: OSI Approved :: Attribution Assurance License
|
License :: OSI Approved :: Attribution Assurance License
|
||||||
License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)
|
|
||||||
License :: OSI Approved :: BSD License
|
License :: OSI Approved :: BSD License
|
||||||
|
License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)
|
||||||
License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)
|
License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)
|
||||||
License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0)
|
License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0)
|
||||||
License :: OSI Approved :: Common Public License
|
License :: OSI Approved :: Common Public License
|
||||||
@ -184,12 +223,13 @@ License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3
|
|||||||
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
||||||
License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)
|
License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)
|
||||||
License :: OSI Approved :: IBM Public License
|
License :: OSI Approved :: IBM Public License
|
||||||
License :: OSI Approved :: Intel Open Source License
|
|
||||||
License :: OSI Approved :: ISC License (ISCL)
|
License :: OSI Approved :: ISC License (ISCL)
|
||||||
|
License :: OSI Approved :: Intel Open Source License
|
||||||
License :: OSI Approved :: Jabber Open Source License
|
License :: OSI Approved :: Jabber Open Source License
|
||||||
License :: OSI Approved :: MirOS License (MirOS)
|
|
||||||
License :: OSI Approved :: MIT License
|
License :: OSI Approved :: MIT License
|
||||||
|
License :: OSI Approved :: MIT No Attribution License (MIT-0)
|
||||||
License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW)
|
License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW)
|
||||||
|
License :: OSI Approved :: MirOS License (MirOS)
|
||||||
License :: OSI Approved :: Motosoto License
|
License :: OSI Approved :: Motosoto License
|
||||||
License :: OSI Approved :: Mozilla Public License 1.0 (MPL)
|
License :: OSI Approved :: Mozilla Public License 1.0 (MPL)
|
||||||
License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
|
License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
|
||||||
@ -207,18 +247,20 @@ License :: OSI Approved :: SIL Open Font License 1.1 (OFL-1.1)
|
|||||||
License :: OSI Approved :: Sleepycat License
|
License :: OSI Approved :: Sleepycat License
|
||||||
License :: OSI Approved :: Sun Industry Standards Source License (SISSL)
|
License :: OSI Approved :: Sun Industry Standards Source License (SISSL)
|
||||||
License :: OSI Approved :: Sun Public License
|
License :: OSI Approved :: Sun Public License
|
||||||
|
License :: OSI Approved :: The Unlicense (Unlicense)
|
||||||
License :: OSI Approved :: Universal Permissive License (UPL)
|
License :: OSI Approved :: Universal Permissive License (UPL)
|
||||||
License :: OSI Approved :: University of Illinois/NCSA Open Source License
|
License :: OSI Approved :: University of Illinois/NCSA Open Source License
|
||||||
License :: OSI Approved :: Vovida Software License 1.0
|
License :: OSI Approved :: Vovida Software License 1.0
|
||||||
License :: OSI Approved :: W3C License
|
License :: OSI Approved :: W3C License
|
||||||
License :: OSI Approved :: X.Net License
|
License :: OSI Approved :: X.Net License
|
||||||
License :: OSI Approved :: zlib/libpng License
|
|
||||||
License :: OSI Approved :: Zope Public License
|
License :: OSI Approved :: Zope Public License
|
||||||
|
License :: OSI Approved :: zlib/libpng License
|
||||||
License :: Other/Proprietary License
|
License :: Other/Proprietary License
|
||||||
License :: Public Domain
|
License :: Public Domain
|
||||||
License :: Repoze Public License
|
License :: Repoze Public License
|
||||||
Natural Language :: Afrikaans
|
Natural Language :: Afrikaans
|
||||||
Natural Language :: Arabic
|
Natural Language :: Arabic
|
||||||
|
Natural Language :: Basque
|
||||||
Natural Language :: Bengali
|
Natural Language :: Bengali
|
||||||
Natural Language :: Bosnian
|
Natural Language :: Bosnian
|
||||||
Natural Language :: Bulgarian
|
Natural Language :: Bulgarian
|
||||||
@ -242,6 +284,7 @@ Natural Language :: Hindi
|
|||||||
Natural Language :: Hungarian
|
Natural Language :: Hungarian
|
||||||
Natural Language :: Icelandic
|
Natural Language :: Icelandic
|
||||||
Natural Language :: Indonesian
|
Natural Language :: Indonesian
|
||||||
|
Natural Language :: Irish
|
||||||
Natural Language :: Italian
|
Natural Language :: Italian
|
||||||
Natural Language :: Japanese
|
Natural Language :: Japanese
|
||||||
Natural Language :: Javanese
|
Natural Language :: Javanese
|
||||||
@ -252,6 +295,7 @@ Natural Language :: Lithuanian
|
|||||||
Natural Language :: Macedonian
|
Natural Language :: Macedonian
|
||||||
Natural Language :: Malay
|
Natural Language :: Malay
|
||||||
Natural Language :: Marathi
|
Natural Language :: Marathi
|
||||||
|
Natural Language :: Nepali
|
||||||
Natural Language :: Norwegian
|
Natural Language :: Norwegian
|
||||||
Natural Language :: Panjabi
|
Natural Language :: Panjabi
|
||||||
Natural Language :: Persian
|
Natural Language :: Persian
|
||||||
@ -275,18 +319,17 @@ Natural Language :: Urdu
|
|||||||
Natural Language :: Vietnamese
|
Natural Language :: Vietnamese
|
||||||
Operating System :: Android
|
Operating System :: Android
|
||||||
Operating System :: BeOS
|
Operating System :: BeOS
|
||||||
Operating System :: iOS
|
|
||||||
Operating System :: MacOS
|
Operating System :: MacOS
|
||||||
Operating System :: MacOS :: MacOS 9
|
Operating System :: MacOS :: MacOS 9
|
||||||
Operating System :: MacOS :: MacOS X
|
Operating System :: MacOS :: MacOS X
|
||||||
Operating System :: Microsoft
|
Operating System :: Microsoft
|
||||||
Operating System :: Microsoft :: MS-DOS
|
Operating System :: Microsoft :: MS-DOS
|
||||||
Operating System :: Microsoft :: Windows
|
Operating System :: Microsoft :: Windows
|
||||||
Operating System :: Microsoft :: Windows :: Windows 10
|
|
||||||
Operating System :: Microsoft :: Windows :: Windows 3.1 or Earlier
|
Operating System :: Microsoft :: Windows :: Windows 3.1 or Earlier
|
||||||
Operating System :: Microsoft :: Windows :: Windows 7
|
Operating System :: Microsoft :: Windows :: Windows 7
|
||||||
Operating System :: Microsoft :: Windows :: Windows 8
|
Operating System :: Microsoft :: Windows :: Windows 8
|
||||||
Operating System :: Microsoft :: Windows :: Windows 8.1
|
Operating System :: Microsoft :: Windows :: Windows 8.1
|
||||||
|
Operating System :: Microsoft :: Windows :: Windows 10
|
||||||
Operating System :: Microsoft :: Windows :: Windows 95/98/2000
|
Operating System :: Microsoft :: Windows :: Windows 95/98/2000
|
||||||
Operating System :: Microsoft :: Windows :: Windows CE
|
Operating System :: Microsoft :: Windows :: Windows CE
|
||||||
Operating System :: Microsoft :: Windows :: Windows NT/2000
|
Operating System :: Microsoft :: Windows :: Windows NT/2000
|
||||||
@ -294,10 +337,9 @@ Operating System :: Microsoft :: Windows :: Windows Server 2003
|
|||||||
Operating System :: Microsoft :: Windows :: Windows Server 2008
|
Operating System :: Microsoft :: Windows :: Windows Server 2008
|
||||||
Operating System :: Microsoft :: Windows :: Windows Vista
|
Operating System :: Microsoft :: Windows :: Windows Vista
|
||||||
Operating System :: Microsoft :: Windows :: Windows XP
|
Operating System :: Microsoft :: Windows :: Windows XP
|
||||||
Operating System :: OS/2
|
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
|
Operating System :: OS/2
|
||||||
Operating System :: Other OS
|
Operating System :: Other OS
|
||||||
Operating System :: PalmOS
|
|
||||||
Operating System :: PDA Systems
|
Operating System :: PDA Systems
|
||||||
Operating System :: POSIX
|
Operating System :: POSIX
|
||||||
Operating System :: POSIX :: AIX
|
Operating System :: POSIX :: AIX
|
||||||
@ -313,10 +355,13 @@ Operating System :: POSIX :: Linux
|
|||||||
Operating System :: POSIX :: Other
|
Operating System :: POSIX :: Other
|
||||||
Operating System :: POSIX :: SCO
|
Operating System :: POSIX :: SCO
|
||||||
Operating System :: POSIX :: SunOS/Solaris
|
Operating System :: POSIX :: SunOS/Solaris
|
||||||
|
Operating System :: PalmOS
|
||||||
|
Operating System :: RISC OS
|
||||||
Operating System :: Unix
|
Operating System :: Unix
|
||||||
Programming Language :: Ada
|
Operating System :: iOS
|
||||||
Programming Language :: APL
|
Programming Language :: APL
|
||||||
Programming Language :: ASP
|
Programming Language :: ASP
|
||||||
|
Programming Language :: Ada
|
||||||
Programming Language :: Assembly
|
Programming Language :: Assembly
|
||||||
Programming Language :: Awk
|
Programming Language :: Awk
|
||||||
Programming Language :: Basic
|
Programming Language :: Basic
|
||||||
@ -338,32 +383,34 @@ Programming Language :: Fortran
|
|||||||
Programming Language :: Haskell
|
Programming Language :: Haskell
|
||||||
Programming Language :: Java
|
Programming Language :: Java
|
||||||
Programming Language :: JavaScript
|
Programming Language :: JavaScript
|
||||||
|
Programming Language :: Kotlin
|
||||||
Programming Language :: Lisp
|
Programming Language :: Lisp
|
||||||
Programming Language :: Logo
|
Programming Language :: Logo
|
||||||
Programming Language :: ML
|
Programming Language :: ML
|
||||||
Programming Language :: Modula
|
Programming Language :: Modula
|
||||||
Programming Language :: Objective C
|
|
||||||
Programming Language :: Object Pascal
|
|
||||||
Programming Language :: OCaml
|
Programming Language :: OCaml
|
||||||
|
Programming Language :: Object Pascal
|
||||||
|
Programming Language :: Objective C
|
||||||
Programming Language :: Other
|
Programming Language :: Other
|
||||||
Programming Language :: Other Scripting Engines
|
Programming Language :: Other Scripting Engines
|
||||||
Programming Language :: Pascal
|
|
||||||
Programming Language :: Perl
|
|
||||||
Programming Language :: PHP
|
Programming Language :: PHP
|
||||||
Programming Language :: Pike
|
|
||||||
Programming Language :: Pliant
|
|
||||||
Programming Language :: PL/SQL
|
Programming Language :: PL/SQL
|
||||||
Programming Language :: PROGRESS
|
Programming Language :: PROGRESS
|
||||||
|
Programming Language :: Pascal
|
||||||
|
Programming Language :: Perl
|
||||||
|
Programming Language :: Pike
|
||||||
|
Programming Language :: Pliant
|
||||||
Programming Language :: Prolog
|
Programming Language :: Prolog
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 2
|
Programming Language :: Python :: 2
|
||||||
|
Programming Language :: Python :: 2 :: Only
|
||||||
Programming Language :: Python :: 2.3
|
Programming Language :: Python :: 2.3
|
||||||
Programming Language :: Python :: 2.4
|
Programming Language :: Python :: 2.4
|
||||||
Programming Language :: Python :: 2.5
|
Programming Language :: Python :: 2.5
|
||||||
Programming Language :: Python :: 2.6
|
Programming Language :: Python :: 2.6
|
||||||
Programming Language :: Python :: 2.7
|
Programming Language :: Python :: 2.7
|
||||||
Programming Language :: Python :: 2 :: Only
|
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: 3.0
|
Programming Language :: Python :: 3.0
|
||||||
Programming Language :: Python :: 3.1
|
Programming Language :: Python :: 3.1
|
||||||
Programming Language :: Python :: 3.2
|
Programming Language :: Python :: 3.2
|
||||||
@ -374,7 +421,7 @@ Programming Language :: Python :: 3.6
|
|||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3.10
|
||||||
Programming Language :: Python :: Implementation
|
Programming Language :: Python :: Implementation
|
||||||
Programming Language :: Python :: Implementation :: CPython
|
Programming Language :: Python :: Implementation :: CPython
|
||||||
Programming Language :: Python :: Implementation :: IronPython
|
Programming Language :: Python :: Implementation :: IronPython
|
||||||
@ -387,10 +434,10 @@ Programming Language :: REBOL
|
|||||||
Programming Language :: Rexx
|
Programming Language :: Rexx
|
||||||
Programming Language :: Ruby
|
Programming Language :: Ruby
|
||||||
Programming Language :: Rust
|
Programming Language :: Rust
|
||||||
|
Programming Language :: SQL
|
||||||
Programming Language :: Scheme
|
Programming Language :: Scheme
|
||||||
Programming Language :: Simula
|
Programming Language :: Simula
|
||||||
Programming Language :: Smalltalk
|
Programming Language :: Smalltalk
|
||||||
Programming Language :: SQL
|
|
||||||
Programming Language :: Tcl
|
Programming Language :: Tcl
|
||||||
Programming Language :: Unix Shell
|
Programming Language :: Unix Shell
|
||||||
Programming Language :: Visual Basic
|
Programming Language :: Visual Basic
|
||||||
@ -410,13 +457,13 @@ Topic :: Communications :: Email
|
|||||||
Topic :: Communications :: Email :: Address Book
|
Topic :: Communications :: Email :: Address Book
|
||||||
Topic :: Communications :: Email :: Email Clients (MUA)
|
Topic :: Communications :: Email :: Email Clients (MUA)
|
||||||
Topic :: Communications :: Email :: Filters
|
Topic :: Communications :: Email :: Filters
|
||||||
Topic :: Communications :: Email :: Mailing List Servers
|
|
||||||
Topic :: Communications :: Email :: Mail Transport Agents
|
Topic :: Communications :: Email :: Mail Transport Agents
|
||||||
|
Topic :: Communications :: Email :: Mailing List Servers
|
||||||
Topic :: Communications :: Email :: Post-Office
|
Topic :: Communications :: Email :: Post-Office
|
||||||
Topic :: Communications :: Email :: Post-Office :: IMAP
|
Topic :: Communications :: Email :: Post-Office :: IMAP
|
||||||
Topic :: Communications :: Email :: Post-Office :: POP3
|
Topic :: Communications :: Email :: Post-Office :: POP3
|
||||||
Topic :: Communications :: Fax
|
|
||||||
Topic :: Communications :: FIDO
|
Topic :: Communications :: FIDO
|
||||||
|
Topic :: Communications :: Fax
|
||||||
Topic :: Communications :: File Sharing
|
Topic :: Communications :: File Sharing
|
||||||
Topic :: Communications :: File Sharing :: Gnutella
|
Topic :: Communications :: File Sharing :: Gnutella
|
||||||
Topic :: Communications :: File Sharing :: Napster
|
Topic :: Communications :: File Sharing :: Napster
|
||||||
@ -429,8 +476,8 @@ Topic :: Database :: Database Engines/Servers
|
|||||||
Topic :: Database :: Front-Ends
|
Topic :: Database :: Front-Ends
|
||||||
Topic :: Desktop Environment
|
Topic :: Desktop Environment
|
||||||
Topic :: Desktop Environment :: File Managers
|
Topic :: Desktop Environment :: File Managers
|
||||||
Topic :: Desktop Environment :: Gnome
|
|
||||||
Topic :: Desktop Environment :: GNUstep
|
Topic :: Desktop Environment :: GNUstep
|
||||||
|
Topic :: Desktop Environment :: Gnome
|
||||||
Topic :: Desktop Environment :: K Desktop Environment (KDE)
|
Topic :: Desktop Environment :: K Desktop Environment (KDE)
|
||||||
Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes
|
Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes
|
||||||
Topic :: Desktop Environment :: PicoGUI
|
Topic :: Desktop Environment :: PicoGUI
|
||||||
@ -450,10 +497,10 @@ Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Epplets
|
|||||||
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR15
|
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR15
|
||||||
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR16
|
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR16
|
||||||
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR17
|
Topic :: Desktop Environment :: Window Managers :: Enlightenment :: Themes DR17
|
||||||
Topic :: Desktop Environment :: Window Managers :: Fluxbox
|
|
||||||
Topic :: Desktop Environment :: Window Managers :: Fluxbox :: Themes
|
|
||||||
Topic :: Desktop Environment :: Window Managers :: FVWM
|
Topic :: Desktop Environment :: Window Managers :: FVWM
|
||||||
Topic :: Desktop Environment :: Window Managers :: FVWM :: Themes
|
Topic :: Desktop Environment :: Window Managers :: FVWM :: Themes
|
||||||
|
Topic :: Desktop Environment :: Window Managers :: Fluxbox
|
||||||
|
Topic :: Desktop Environment :: Window Managers :: Fluxbox :: Themes
|
||||||
Topic :: Desktop Environment :: Window Managers :: IceWM
|
Topic :: Desktop Environment :: Window Managers :: IceWM
|
||||||
Topic :: Desktop Environment :: Window Managers :: IceWM :: Themes
|
Topic :: Desktop Environment :: Window Managers :: IceWM :: Themes
|
||||||
Topic :: Desktop Environment :: Window Managers :: MetaCity
|
Topic :: Desktop Environment :: Window Managers :: MetaCity
|
||||||
@ -531,11 +578,11 @@ Topic :: Multimedia :: Graphics :: Presentation
|
|||||||
Topic :: Multimedia :: Graphics :: Viewers
|
Topic :: Multimedia :: Graphics :: Viewers
|
||||||
Topic :: Multimedia :: Sound/Audio
|
Topic :: Multimedia :: Sound/Audio
|
||||||
Topic :: Multimedia :: Sound/Audio :: Analysis
|
Topic :: Multimedia :: Sound/Audio :: Analysis
|
||||||
Topic :: Multimedia :: Sound/Audio :: Capture/Recording
|
|
||||||
Topic :: Multimedia :: Sound/Audio :: CD Audio
|
Topic :: Multimedia :: Sound/Audio :: CD Audio
|
||||||
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Playing
|
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Playing
|
||||||
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping
|
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping
|
||||||
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Writing
|
Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Writing
|
||||||
|
Topic :: Multimedia :: Sound/Audio :: Capture/Recording
|
||||||
Topic :: Multimedia :: Sound/Audio :: Conversion
|
Topic :: Multimedia :: Sound/Audio :: Conversion
|
||||||
Topic :: Multimedia :: Sound/Audio :: Editors
|
Topic :: Multimedia :: Sound/Audio :: Editors
|
||||||
Topic :: Multimedia :: Sound/Audio :: MIDI
|
Topic :: Multimedia :: Sound/Audio :: MIDI
|
||||||
@ -573,6 +620,7 @@ Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|||||||
Topic :: Scientific/Engineering :: GIS
|
Topic :: Scientific/Engineering :: GIS
|
||||||
Topic :: Scientific/Engineering :: Human Machine Interfaces
|
Topic :: Scientific/Engineering :: Human Machine Interfaces
|
||||||
Topic :: Scientific/Engineering :: Hydrology
|
Topic :: Scientific/Engineering :: Hydrology
|
||||||
|
Topic :: Scientific/Engineering :: Image Processing
|
||||||
Topic :: Scientific/Engineering :: Image Recognition
|
Topic :: Scientific/Engineering :: Image Recognition
|
||||||
Topic :: Scientific/Engineering :: Information Analysis
|
Topic :: Scientific/Engineering :: Information Analysis
|
||||||
Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
|
Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
|
||||||
@ -600,13 +648,13 @@ Topic :: Software Development :: Interpreters
|
|||||||
Topic :: Software Development :: Libraries
|
Topic :: Software Development :: Libraries
|
||||||
Topic :: Software Development :: Libraries :: Application Frameworks
|
Topic :: Software Development :: Libraries :: Application Frameworks
|
||||||
Topic :: Software Development :: Libraries :: Java Libraries
|
Topic :: Software Development :: Libraries :: Java Libraries
|
||||||
Topic :: Software Development :: Libraries :: Perl Modules
|
|
||||||
Topic :: Software Development :: Libraries :: PHP Classes
|
Topic :: Software Development :: Libraries :: PHP Classes
|
||||||
|
Topic :: Software Development :: Libraries :: Perl Modules
|
||||||
Topic :: Software Development :: Libraries :: Pike Modules
|
Topic :: Software Development :: Libraries :: Pike Modules
|
||||||
Topic :: Software Development :: Libraries :: pygame
|
|
||||||
Topic :: Software Development :: Libraries :: Python Modules
|
Topic :: Software Development :: Libraries :: Python Modules
|
||||||
Topic :: Software Development :: Libraries :: Ruby Modules
|
Topic :: Software Development :: Libraries :: Ruby Modules
|
||||||
Topic :: Software Development :: Libraries :: Tcl Extensions
|
Topic :: Software Development :: Libraries :: Tcl Extensions
|
||||||
|
Topic :: Software Development :: Libraries :: pygame
|
||||||
Topic :: Software Development :: Localization
|
Topic :: Software Development :: Localization
|
||||||
Topic :: Software Development :: Object Brokering
|
Topic :: Software Development :: Object Brokering
|
||||||
Topic :: Software Development :: Object Brokering :: CORBA
|
Topic :: Software Development :: Object Brokering :: CORBA
|
||||||
@ -645,6 +693,20 @@ Topic :: System :: Hardware
|
|||||||
Topic :: System :: Hardware :: Hardware Drivers
|
Topic :: System :: Hardware :: Hardware Drivers
|
||||||
Topic :: System :: Hardware :: Mainframes
|
Topic :: System :: Hardware :: Mainframes
|
||||||
Topic :: System :: Hardware :: Symmetric Multi-processing
|
Topic :: System :: Hardware :: Symmetric Multi-processing
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB)
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Audio
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Audio/Video (AV)
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Communications Device Class (CDC)
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Diagnostic Device
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Hub
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Human Interface Device (HID)
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Mass Storage
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Miscellaneous
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Printer
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Smart Card
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Vendor
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Video (UVC)
|
||||||
|
Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Wireless Controller
|
||||||
Topic :: System :: Installation/Setup
|
Topic :: System :: Installation/Setup
|
||||||
Topic :: System :: Logging
|
Topic :: System :: Logging
|
||||||
Topic :: System :: Monitoring
|
Topic :: System :: Monitoring
|
||||||
@ -662,11 +724,11 @@ Topic :: System :: Power (UPS)
|
|||||||
Topic :: System :: Recovery Tools
|
Topic :: System :: Recovery Tools
|
||||||
Topic :: System :: Shells
|
Topic :: System :: Shells
|
||||||
Topic :: System :: Software Distribution
|
Topic :: System :: Software Distribution
|
||||||
|
Topic :: System :: System Shells
|
||||||
Topic :: System :: Systems Administration
|
Topic :: System :: Systems Administration
|
||||||
Topic :: System :: Systems Administration :: Authentication/Directory
|
Topic :: System :: Systems Administration :: Authentication/Directory
|
||||||
Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
|
Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
|
||||||
Topic :: System :: Systems Administration :: Authentication/Directory :: NIS
|
Topic :: System :: Systems Administration :: Authentication/Directory :: NIS
|
||||||
Topic :: System :: System Shells
|
|
||||||
Topic :: Terminals
|
Topic :: Terminals
|
||||||
Topic :: Terminals :: Serial
|
Topic :: Terminals :: Serial
|
||||||
Topic :: Terminals :: Telnet
|
Topic :: Terminals :: Telnet
|
||||||
@ -686,8 +748,10 @@ Topic :: Text Processing :: Linguistic
|
|||||||
Topic :: Text Processing :: Markup
|
Topic :: Text Processing :: Markup
|
||||||
Topic :: Text Processing :: Markup :: HTML
|
Topic :: Text Processing :: Markup :: HTML
|
||||||
Topic :: Text Processing :: Markup :: LaTeX
|
Topic :: Text Processing :: Markup :: LaTeX
|
||||||
|
Topic :: Text Processing :: Markup :: Markdown
|
||||||
Topic :: Text Processing :: Markup :: SGML
|
Topic :: Text Processing :: Markup :: SGML
|
||||||
Topic :: Text Processing :: Markup :: VRML
|
Topic :: Text Processing :: Markup :: VRML
|
||||||
Topic :: Text Processing :: Markup :: XML
|
Topic :: Text Processing :: Markup :: XML
|
||||||
|
Topic :: Text Processing :: Markup :: reStructuredText
|
||||||
Topic :: Utilities
|
Topic :: Utilities
|
||||||
Typing :: Typed
|
Typing :: Typed
|
@ -4,11 +4,11 @@
|
|||||||
%global srcname flit
|
%global srcname flit
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 3.0.0
|
Version: 3.2.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Simplified packaging of Python modules
|
Summary: Simplified packaging of Python modules
|
||||||
|
|
||||||
# ./flit/logo.py under ASL 2.0 license
|
# ./flit/log.py under ASL 2.0 license
|
||||||
# ./flit/upload.py under PSF license
|
# ./flit/upload.py under PSF license
|
||||||
License: BSD and ASL 2.0 and Python
|
License: BSD and ASL 2.0 and Python
|
||||||
|
|
||||||
@ -18,9 +18,6 @@ Source0: https://github.com/takluyver/flit/archive/%{version}/%{srcname}-%{versi
|
|||||||
# For the tests
|
# For the tests
|
||||||
Source1: https://pypi.org/pypi?%3Aaction=list_classifiers#/classifiers.lst
|
Source1: https://pypi.org/pypi?%3Aaction=list_classifiers#/classifiers.lst
|
||||||
|
|
||||||
# Replace deprecated pytoml with toml, backported from upstream
|
|
||||||
Patch1: https://github.com/takluyver/flit/commit/b81b1da55e.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: pyproject-rpm-macros
|
BuildRequires: pyproject-rpm-macros
|
||||||
@ -46,7 +43,7 @@ BuildRequires: python3-requests-download
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
# https://pypi.python.org/pypi/tornado
|
# https://pypi.python.org/pypi/tornado
|
||||||
# ./flit/logo.py unkown version
|
# ./flit/log.py unknown version
|
||||||
Provides: bundled(python-tornado)
|
Provides: bundled(python-tornado)
|
||||||
|
|
||||||
%global _description %{expand:
|
%global _description %{expand:
|
||||||
@ -136,6 +133,10 @@ pytest-3
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 30 2021 Karolina Surma <ksurma@redhat.com> - 3.2.0-1
|
||||||
|
- Update to 3.2.0
|
||||||
|
Resolves: rhbz#1940399
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-3
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (flit-3.0.0.tar.gz) = eaac412613f18e711603ee3dcf692aa0b652cd59de726e547ab91ee96368d804dbe4f312a0c169565ff96f34dd4e72e7fccf63f719910c17955afa64d2f36485
|
SHA512 (flit-3.2.0.tar.gz) = b40768fb4b0b2a2e3116ac790dfa629da5a57cda34b10abb8ce6a8febcc3436795d5122dcfa3db2c6d07d493f00391d2ca7300112561c8ff2a0b04d77c879662
|
||||||
|
Loading…
Reference in New Issue
Block a user