Skip to content

Commit

Permalink
Merge pull request #2 from PyGamer0/use-poetry
Browse files Browse the repository at this point in the history
Use poetry instead of setuptools
  • Loading branch information
zoomlogo committed Dec 23, 2021
2 parents 3d133ea + d760e1b commit 27d3bda
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 15 deletions.
Empty file added flax/main.py
Empty file.
155 changes: 155 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[tool.poetry]
name = "flax"
version = "0.1.0"
description = "flax tacit language"
authors = ["PyGamer0"]
license = "MIT"

[tool.poetry.scripts]
flax = "flax.main:run"

[tool.poetry.dependencies]
python = ">3.9"

[tool.poetry.dev-dependencies]
pytest = "*"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
numpy
poetry
1 change: 0 additions & 1 deletion scripts/flax

This file was deleted.

13 changes: 0 additions & 13 deletions setup.py

This file was deleted.

Empty file added tests/__init__.py
Empty file.

0 comments on commit 27d3bda

Please sign in to comment.