diff --git a/docs/docs/index.md b/docs/docs/index.md new file mode 100644 index 0000000..000ea34 --- /dev/null +++ b/docs/docs/index.md @@ -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. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml new file mode 100644 index 0000000..c97182f --- /dev/null +++ b/docs/mkdocs.yml @@ -0,0 +1 @@ +site_name: My Docs diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f2f1e08 --- /dev/null +++ b/pyproject.toml @@ -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" diff --git a/requirements-doc.in b/requirements-doc.in new file mode 100644 index 0000000..898468c --- /dev/null +++ b/requirements-doc.in @@ -0,0 +1 @@ +mkdocs-material \ No newline at end of file diff --git a/requirements.in b/requirements.in new file mode 100644 index 0000000..98cef79 --- /dev/null +++ b/requirements.in @@ -0,0 +1 @@ +langchain diff --git a/src/hellocomputer/__init__.py b/src/hellocomputer/__init__.py new file mode 100644 index 0000000..3757e79 --- /dev/null +++ b/src/hellocomputer/__init__.py @@ -0,0 +1,5 @@ +""" +Hellocomputer lets you analyze your data with a conversaation with your computer +""" + +__version__ = '0.1' \ No newline at end of file diff --git a/test/README.md b/test/README.md new file mode 100644 index 0000000..286741e --- /dev/null +++ b/test/README.md @@ -0,0 +1 @@ +Tests here \ No newline at end of file