Skip to content

Commit

Permalink
feat: modernize installation, add license
Browse files Browse the repository at this point in the history
  • Loading branch information
sellisd committed Dec 18, 2024
1 parent ee9cfa5 commit c9c1896
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
1 change: 1 addition & 0 deletions pycodeseq/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__= '0.1.0'
27 changes: 27 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pycodeseq"
dynamic = ["version"]
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"click",
"nbformat",
"pandas",
"tqdm",
]

[project.scripts]
pycodeseq = "pycodeseq.pycodeseq:count"

[tool.hatch.version]
path = "pycodeseq/__init__.py"

[tool.hatch.build.targets.sdist]
include = [
"/pycodeseq",
]
21 changes: 0 additions & 21 deletions setup.py

This file was deleted.

0 comments on commit c9c1896

Please sign in to comment.