Metadata-Version: 2.1
Name: atopy
Version: 1.0.0
Summary: Python Common Library
Author-email: Tom <nanticj@users.noreply.github.com>
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: loguru >=0.7,<0.8
Requires-Dist: pydantic >=2.6,<2.7
Requires-Dist: pydantic-settings >=2.2,<2.3
Requires-Dist: python-dotenv >=1.0,<1.1
Requires-Dist: pytz >=2024.1,<2024.2
Requires-Dist: typer >=0.9,<0.10
Requires-Dist: black >=24.2,<24.3 ; extra == "develop"
Requires-Dist: isort >=5.13,<5.14 ; extra == "develop"
Requires-Dist: mypy >=1.9,<1.10 ; extra == "develop"
Requires-Dist: pylint >=3.1,<3.2 ; extra == "develop"
Requires-Dist: pytest >=8.0,<8.1 ; extra == "develop"
Requires-Dist: types-pytz >=2024.1,<2024.2 ; extra == "develop"
Project-URL: Home, https://github.com/nanticj/atopy
Provides-Extra: develop

# atopy
Python Common Library

# Install
## conda
```
conda create -n atopy python=3.12
conda activate atopy
pip install flit
```

## code
```
cd PATH_TO_CODE
flit install --deps production
```

## run
```
cd PATH_TO_RUN
conda activate atopy
```

