Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import os
import sys

from codecs import open
from shutil import rmtree
from setuptools import setup

Expand All @@ -14,13 +13,12 @@

install_requires = ['text-unidecode>=1.3']
extras_requires = {'unidecode': ['Unidecode>=1.1.1']}
test_requires = []

about = {}
with open(os.path.join(here, package, '__version__.py'), 'r', 'utf-8') as f:
with open(os.path.join(here, package, '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), about)

with open('README.md', 'r', 'utf-8') as f:
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()


Expand Down Expand Up @@ -66,7 +64,6 @@ def status(s):
include_package_data=True,
python_requires=python_requires,
install_requires=install_requires,
tests_require=test_requires,
extras_require=extras_requires,
zip_safe=False,
cmdclass={},
Expand All @@ -75,7 +72,6 @@ def status(s):
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion slugify/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
__author_email__ = '[email protected]'
__description__ = 'A Python slugify application that also handles Unicode'
__url__ = 'https://github.com/un33k/python-slugify'
__license__ = 'MIT'
__license__ = 'SPDX-License-Identifier: MIT'
__copyright__ = 'Copyright 2022 Val Neekman @ Neekware Inc.'
__version__ = '8.0.4'