Skip to content

Commit

Permalink
Develop (#36)
Browse files Browse the repository at this point in the history
* refactor: Separate development and production dependencies in setup.py

- Moved development dependencies (e.g., uvicorn) to the 'dev' extras_require
- Users can now install development dependencies with `pip install fastapi_quickcrud[dev]`
- Updated the setup.py file accordingly

* add github action

* remove chectout

* update action

* add different python version

* add coverage

* add coverage

* Delete .github/workflows/coverage.yml

* update readme

* remove circleci

* rename name

* add coverage

* add CD

* fix setup get version via en var
  • Loading branch information
LuisLuii authored Jan 6, 2024
1 parent 5987627 commit ad9984b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os

from setuptools import setup, find_packages

VERSION = '0.2.5'
VERSION = os.getenv("RELEASE_VERSION", default=None) or os.getenv("env.RELEASE_VERSION", default=None)

print(
"""
Expand Down

0 comments on commit ad9984b

Please sign in to comment.