creating lib_brecal_utils with setup, environment.yml and tests. The version is defined as 0.0.1, while the license is to be determined

This commit is contained in:
max_metz 2023-09-08 06:37:28 +02:00
parent c2b2589852
commit 9413ac45a8
6 changed files with 53 additions and 0 deletions

5
.gitignore vendored
View File

@ -434,3 +434,8 @@ FodyWeavers.xsd
*.msix
*.msm
*.msp
# Local change logs
change_log_metz.md

View File

@ -0,0 +1 @@
from ._version import __version__

View File

@ -0,0 +1 @@
__version__="0.0.1"

View File

@ -0,0 +1,33 @@
name: brecal
channels:
- conda-forge
- anaconda
- defaults
dependencies:
- pip
- colorama>=0.4.6=pyhd8ed1ab_0
- coverage>=7.3.0=py311h459d7ec_0
- ipykernel>=6.25.1=pyh71e2992_0
- ipython>=8.14.0=pyh41d4057_0
- jupyterlab>=4.0.5=pyhd8ed1ab_0
- mamba>=1.4.9=py311h3072747_0
- conda-forge::matplotlib-base>=3.7.2=py311h54ef318_0
- conda-forge::matplotlib>=3.7.2=py311h38be061_0
- matplotlib-inline>=0.1.6=pyhd8ed1ab_0
- pytest>=7.4.0=pyhd8ed1ab_0
- python>=3.11.4=hab00c5b_0_cpython
- pytz>=2023.3=pyhd8ed1ab_0
- setuptools>=68.0.0=pyhd8ed1ab_0
- tqdm>=4.66.1=pyhd8ed1ab_0
- typing_extensions>=4.7.1=pyha770c72_0
- typing_utils>=0.1.0=pyhd8ed1ab_0
- conda-forge::pandas>=2.1.0=py311h320fe9a_0
- conda-forge::opencv>=4.7.0=py311h38be061_1
- pip:
# pip packages and wheels
- -e /home/scope/brecal/src/lib_brecal_utils/.
prefix: /home/scope/anaconda3/envs/brecal

View File

@ -0,0 +1,13 @@
from setuptools import find_packages, setup
package_name = "brecal_utils"
exec(open(f'{package_name}/_version.py').read()) # obtains __version__
setup(
name=package_name,
packages=find_packages(),
version=__version__,
description='initializing the library. testing initial imports and relations. the license type is to be determined',
author='Max Metz',
license='to be determined',
)

View File