This file contains hidden or 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
| from blessings import Terminal | |
| # import json # Because, in the future, this program's gonna be more advanced. | |
| import re | |
| t = Terminal() | |
| print( | |
| f""" | |
| {'-' * t.width} |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """To setup.""" | |
| from pathlib import Path | |
| from setuptools import setup, find_packages | |
| from stacksearch import __version__ | |
| # The directory containing this file | |
| HERE = Path(__file__).parent |
This file contains hidden or 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
| from setuptools import setup | |
| setup( | |
| name="my_package", # Or some other name that isn't taken on pypi.org | |
| version="0.1.0", # Or whatever versioning scheme you prefer | |
| description='A description', | |
| author='John Doe', | |
| author_email='john.doe@example.com', | |
| packages=["package_folder"], | |
| license='MIT', # Or your license | |
| ) |
NewerOlder