Skip to content

Commit

Permalink
Version 1.0.0 - Ready for the Wild
Browse files Browse the repository at this point in the history
- Smooshed `datetimeutils` and `typeutils` into a new package called `ccptools`
  • Loading branch information
CCP-Zeulix committed Apr 4, 2024
1 parent 1a73d66 commit c2016dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install --upgrade setuptools wheel twine
- name: Run unit tests
run: |
python -m unittest discover -v -f ./tests
Expand Down
5 changes: 0 additions & 5 deletions _sandbox.py

This file was deleted.

16 changes: 4 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,12 @@
from ccptools import __version__


readme = None
try:
with open('README.md') as f:
readme = f.read()
except Exception as ex:
pass
with open('README.md', encoding='utf-8') as f:
readme = f.read()


lic = None
try:
with open('LICENSE') as f:
lic = f.read()
except Exception as ex:
pass
with open('LICENSE', encoding='utf-8') as f:
lic = f.read()


setuptools.setup(
Expand Down

0 comments on commit c2016dc

Please sign in to comment.