cadquery-freecad-module/ThirdParty/cqparts_fasteners/__init__.py
2018-12-29 06:10:03 -05:00

32 lines
1.0 KiB
Python

# =========================== Package Information ===========================
# Version Planning:
# 0.1.x - Development Status :: 2 - Pre-Alpha
# 0.2.x - Development Status :: 3 - Alpha
# 0.3.x - Development Status :: 4 - Beta
# 1.x - Development Status :: 5 - Production/Stable
# <any above>.y - developments on that version (pre-release)
# <any above>*.dev* - development release (intended purely to test deployment)
__version__ = '0.1.0'
__title__ = 'cqparts_fasteners'
__description__ = 'Nuts, Bolts and Screws content library for cqparts'
__url__ = 'https://github.com/fragmuffin/cqparts/tree/master/src/cqparts_fasteners'
__author__ = 'Peter Boin'
__email__ = 'peter.boin+cqparts@gmail.com'
__license__ = 'GPLv3'
__keywords__ = ['cadquery', 'cad', '3d', 'modeling', 'fasteners']
__package_data__ = ['catalogue/*.json']
# =========================== Functional ===========================
__all__ = [
'utils',
'fasteners',
]
from . import utils
from . import fasteners