Merge: Fix: Refactor for clean code and portfolio presentation.

This commit is contained in:
2025-02-26 12:30:39 +00:00
parent acbe8ba57c
commit f7c368c022
1330 changed files with 459 additions and 237531 deletions

View File

@@ -6,20 +6,20 @@
from setuptools import setup, find_packages
with open('README.rst') as f:
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='project/package name',
version='0.1.0',
description='Project/package description',
name='demo_braille',
version='0.1.1',
description='Text to English Braille translation module using python. The method of Braille translation can be varied to correspond to various chapters in the Standard English Braille pdf in the docs to allow users of different stages of Braille learning progress to create translations at their level. This module is a demo subproject of an engineering system that is used to convert text to English Braille as a 3D object and then prepare it and print it on a 3D printer farm.',
long_description=readme,
author='Edward Middleton-Smith',
author_email='edward.middletonsmith@gmail.com',
url='github_repo',
url='https://github.com/Teddy-1024/demo_braille',
license=license,
packages=find_packages(exclude('tests', 'docs'))
packages=find_packages(exclude = ('tests', 'docs'))
)