34 lines
1.1 KiB
Python
34 lines
1.1 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_misc'
|
|
__description__ = 'Miscelaneous content library for cqparts'
|
|
__url__ = 'https://github.com/fragmuffin/cqparts/tree/master/src/cqparts_misc'
|
|
|
|
__author__ = 'Peter Boin'
|
|
__email__ = 'peter.boin+cqparts@gmail.com'
|
|
|
|
__license__ = 'GPLv3'
|
|
|
|
__keywords__ = ['cadquery', 'cad', '3d', 'modeling']
|
|
|
|
# not text-parsable
|
|
import datetime
|
|
_now = datetime.date.today()
|
|
__copyright__ = "Copyright {year} {author}".format(year=_now.year, author=__author__)
|
|
|
|
|
|
# =========================== Functional ===========================
|
|
__all__ = [
|
|
'basic',
|
|
]
|
|
|
|
from . import basic
|