Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 0b28be7

Browse files
authored
Add files via upload
1 parent 893ff16 commit 0b28be7

File tree

7 files changed

+63
-0
lines changed

7 files changed

+63
-0
lines changed

PROFIT.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Profit Statement
2+
3+
This project is not created for the purpose of generating revenue or making money. It is purely a non-profit initiative aimed at contributing to the community and advancing knowledge.
4+
5+
**Key Points:**
6+
- This project is open source and freely available for educational and non-commercial use.
7+
- No funds are generated or sought through this project.
8+
- Our primary goal is to foster learning, collaboration, and innovation without financial motivations.
9+
10+
We encourage contributions from the community to enhance the project's capabilities and reach.
11+
12+
We thank all people that use and like our Software!

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
binaryconvert==2.6

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
setup(
7+
name='simplified_regex',
8+
version='1.0',
9+
packages=find_packages(),
10+
license='MIT',
11+
description='A tool that simplifies RegEx extremly!',
12+
author='D&I',
13+
author_email='di.projects.help@gmail.com',
14+
long_description=long_description,
15+
long_description_content_type="text/markdown",
16+
url='https://github.com/d-i-projects/simplified_regex',
17+
download_url='https://github.com/D-I-Projects/simplified_regex/archive/refs/tags/v1.0.tar.gz',
18+
keywords=['simplified_regex', 'regex', 'simple'],
19+
python_requires='>=3.9',
20+
classifiers=[
21+
'Development Status :: 5 - Production/Stable',
22+
'Intended Audience :: Developers',
23+
'Topic :: Software Development :: Libraries',
24+
'License :: OSI Approved :: MIT License',
25+
'Programming Language :: Python :: 3.9',
26+
],
27+
entry_points='''
28+
[console_scripts]
29+
diec-cli=diec.cli:cli
30+
''',
31+
)

simplified_regex/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# __init__.py

simplified_regex/__main__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .cli import cli
2+
3+
if __name__ == "__main__":
4+
cli()

simplified_regex/cli.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import click
2+
3+
@click.group()
4+
def cli():
5+
"""simplified_regex, CLI Library."""
6+
pass
7+
8+
@cli.command()
9+
def example():
10+
print("example / simplified_regex")
11+
12+
cli.add_command(example)

0 commit comments

Comments
 (0)