14 lines
423 B
Python
14 lines
423 B
Python
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',
|
|
)
|