-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ pip install --upgrade regexsolver | |
|
||
### Requirements | ||
|
||
- Python >=3.6 | ||
- Python >=3.7 | ||
|
||
## Usage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[build-system] | ||
requires = ["setuptools>=52.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "regexsolver" | ||
version = "1.0.0" | ||
authors = [ | ||
{ name = "RegexSolver", email = "[email protected]" }, | ||
{ name = "Alexandre van Beurden" }, | ||
] | ||
description = "RegexSolver allows you to manipulate regular expressions as sets, enabling operations such as intersection, union, and subtraction." | ||
keywords = [ | ||
"Regular Expression", | ||
"regex", | ||
"regexp", | ||
"set", | ||
"intersection", | ||
"union", | ||
"subtraction", | ||
"difference", | ||
"equivalence", | ||
"subset", | ||
"nfa", | ||
"dfa", | ||
] | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
dependencies = [ | ||
'requests>=2.20.0', | ||
'pydantic<=2.5.3, >2.4.0; python_version<"3.8"', | ||
'pydantic>=2.6.0; python_version>="3.8"', | ||
] | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.7", | ||
"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", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://regexsolver.com/" | ||
Issues = "https://github.com/RegexSolver/regexsolver-python/issues" | ||
Documentation = "https://docs.regexsolver.com/" | ||
"Source Code" = "https://github.com/RegexSolver/regexsolver-python" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
author_email="[email protected]", | ||
url="https://github.com/RegexSolver/regexsolver-python", | ||
license="MIT", | ||
keywords="regex regexp set intersection union subtraction difference equivalence subset", | ||
keywords="regex regexp set intersection union subtraction difference equivalence subset nfa dfa", | ||
packages=find_packages(exclude=["tests", "tests.*"]), | ||
|
||
install_requires=[ | ||
|
@@ -20,7 +20,8 @@ | |
], | ||
python_requires='>=3.7', | ||
project_urls={ | ||
"Project Homepage": "https://regexsolver.com/", | ||
"Homepage": "https://regexsolver.com/", | ||
"Issues": "https://github.com/RegexSolver/regexsolver-python/issues", | ||
"Documentation": "https://docs.regexsolver.com/", | ||
"Source Code": "https://github.com/RegexSolver/regexsolver-python", | ||
}, | ||
|