Skip to content

Commit ad9984b

Browse files
authored
Develop (#36)
* 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
1 parent 5987627 commit ad9984b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
import os
2+
13
from setuptools import setup, find_packages
24

3-
VERSION = '0.2.5'
5+
VERSION = os.getenv("RELEASE_VERSION", default=None) or os.getenv("env.RELEASE_VERSION", default=None)
46

57
print(
68
"""

0 commit comments

Comments
 (0)