-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use pollination-dsl instead of queenbee-dsl
- Loading branch information
1 parent
7590708
commit f489e0c
Showing
21 changed files
with
27 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
queenbee-dsl==0.7.2 | ||
pollination-dsl>=0.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/usr/bin/env python | ||
import setuptools | ||
# add these line to integrate the queenbee packaging process into Python packaging | ||
from queenbee_dsl.package import PackageQBInstall, PackageQBDevelop | ||
from pollination_dsl.package import PostInstall, PostDevelop | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
# normal setuptool inputs | ||
setuptools.setup( | ||
cmdclass={'develop': PackageQBDevelop, 'install': PackageQBInstall}, # this is critical for local packaging | ||
name='pollination-honeybee-radiance', # will be used for package name unless it is overwritten using __queenbee__ info. | ||
cmdclass={'develop': PostDevelop, 'install': PostInstall}, # this is critical for local packaging | ||
name='pollination-honeybee-radiance', # will be used for package name unless it is overwritten using __queenbee__ info. | ||
author='ladybug-tools', # the owner account for this package - required if pushed to Pollination | ||
packages=setuptools.find_namespace_packages(include=['pollination.*']), # required - that's how pollination find the package | ||
use_scm_version=True, | ||
setup_requires=['setuptools_scm'], | ||
|
@@ -21,11 +22,9 @@ | |
description='Honeybee Radiance plugin for Pollination.', # will be used as package description | ||
long_description=long_description, # will be translated to ReadMe content on Pollination | ||
long_description_content_type="text/markdown", | ||
author='mostapha', # all the information for author and maintainers will be | ||
author_email='[email protected]', # translated to maintainers. For multiple authors use comma | ||
maintainer='ladybug-tools', # inside the string. | ||
maintainer_email='[email protected]', | ||
keywords='honeybee, radiance, ladybug-tools, daylight', # will be used as keywords | ||
maintainer='mostapha, ladybug-tools', # Package maintainers. For multiple maintainers use comma | ||
maintainer_email='[email protected], [email protected]', | ||
keywords='honeybee, radiance, ladybug-tools, daylight', # will be used as keywords | ||
license='PolyForm Shield License 1.0.0, https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt', # the license link should be separated by a comma | ||
zip_safe=False | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters