Skip to content

Commit

Permalink
Initial code for the PyPI package
Browse files Browse the repository at this point in the history
  • Loading branch information
danniel committed Jul 30, 2024
1 parent b5d27ec commit b8d4719
Show file tree
Hide file tree
Showing 12 changed files with 45 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.venv
.env

*.pyc
__pycache__
*.egg-info

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json

.idea/
2 changes: 2 additions & 0 deletions dist/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO
1 change: 1 addition & 0 deletions examples/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[project]
name = "NGOHub"
version = "0.0.1"
description = "Python client for NGOHub.ro"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Typing :: Typed",
]
requires-python = ">=3.11"

[project.urls]
Homepage = "https://github.com/code4romania/pyngohub/"
Issues = "https://github.com/code4romania/pyngohub/issues"

[build-system]
requires = ["setuptools>=72.1"]
build-backend = "setuptools.build_meta"
Empty file added requirements/build.in
Empty file.
Empty file added requirements/dev.in
Empty file.
Empty file added requirements/docs.in
Empty file.
Empty file added requirements/tests.in
Empty file.
1 change: 1 addition & 0 deletions src/ngohub/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from core import NGOHub
3 changes: 3 additions & 0 deletions src/ngohub/core.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

class NGOHub:
pass
1 change: 1 addition & 0 deletions tests/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO

0 comments on commit b8d4719

Please sign in to comment.