Skip to content

Commit

Permalink
Release 0.0.1 (#3)
Browse files Browse the repository at this point in the history
* First commit

* First commit

* First commit

* First commit
  • Loading branch information
osoucy committed Jul 16, 2023
1 parent 0c0938e commit 927796a
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: pip install flit

- name: Build and publish settus to pypi
run: make build publish
run: make publish
env:
FLIT_INDEX_URL: ${{ vars.FLIT_INDEX_URL }}
FLIT_USERNAME: ${{ vars.FLIT_USERNAME }}
Expand Down
45 changes: 45 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# --------------------------------------------------------------------------- #
# Compiled files #
# --------------------------------------------------------------------------- #

# Compiled files
**pytest_cache**
**/**.pyc

# --------------------------------------------------------------------------- #
# Environment and configurations #
# --------------------------------------------------------------------------- #

# PyCharm configuration
**/.idea/**

# Local settings and environment variables
#settings_local/*.*

# --------------------------------------------------------------------------- #
# Installation #
# --------------------------------------------------------------------------- #

#**/*.egg-info/**
dist
#**/dist/**

# --------------------------------------------------------------------------- #
# Testing and coverage #
# --------------------------------------------------------------------------- #

# Coverage
.coverage
coverage.xml
htmlcov

# Test results
junit

# Tox files - Global
#.tox_pip_cache_sdist
#.tox_pip_cache_whl

# Tox files - Package-specific
#**/.tox/**

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Release History

## [0.0.1] - Unreleased
## [0.0.1] - 2023-07-16
**Added**
- Initial pypi release
6 changes: 5 additions & 1 deletion settus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
# Classes #
# --------------------------------------------------------------------------- #

from .basesettings import BaseSettings
# Required to parse version before build?
try:
from .basesettings import BaseSettings
except ModuleNotFoundError:
pass


# --------------------------------------------------------------------------- #
Expand Down

0 comments on commit 927796a

Please sign in to comment.