-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (29 loc) · 969 Bytes
/
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
from __future__ import annotations
from skbuild import setup
with open("README.md", encoding="utf8") as f:
readme = f.read()
setup(
name="cydifflib",
version="1.1.0",
url="https://github.com/rapidfuzz/cydifflib",
author="Max Bachmann",
author_email="[email protected]",
description="Fast implementation of difflib's algorithms",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
packages=["cydifflib"],
package_dir={"": "src"},
zip_safe=True,
include_package_data=True,
python_requires=">=3.8",
)