Project skeleton

This commit is contained in:
Guillem Borrell 2024-05-17 22:57:02 +02:00
parent f25104ef59
commit 6e347caf50
7 changed files with 40 additions and 0 deletions

17
docs/docs/index.md Normal file
View file

@ -0,0 +1,17 @@
# Welcome to MkDocs
For full documentation visit [mkdocs.org](https://www.mkdocs.org).
## Commands
* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.
## Project layout
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

1
docs/mkdocs.yml Normal file
View file

@ -0,0 +1 @@
site_name: My Docs

14
pyproject.toml Normal file
View file

@ -0,0 +1,14 @@
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "hellocomputer"
authors = [{name = "Guillem Borrell", email = "guillemborrell@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
[project.urls]
Home = "https://git.guillemborrell.es/guillem/hellocomputer"

1
requirements-doc.in Normal file
View file

@ -0,0 +1 @@
mkdocs-material

1
requirements.in Normal file
View file

@ -0,0 +1 @@
langchain

View file

@ -0,0 +1,5 @@
"""
Hellocomputer lets you analyze your data with a conversaation with your computer
"""
__version__ = '0.1'

1
test/README.md Normal file
View file

@ -0,0 +1 @@
Tests here