Skip to content

Commit ad75eef

Browse files
committed
cli(setup): Uodate setup
1 parent 62b22a3 commit ad75eef

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

honeybee_3dm/cli.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
3+
def main():
4+
pass

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@
1818
url="https://github.com/ladybug-tools/honeybee-3dm",
1919
packages=setuptools.find_packages(exclude=["tests*"]),
2020
install_requires=requirements,
21+
include_package_data=True,
22+
entry_points={
23+
"console_scripts": ["honeybee-3dm = honeybee_3dm.cli:main"]
24+
},
2125
classifiers=[
2226
"Programming Language :: Python :: 3.7",
2327
"Programming Language :: Python :: Implementation :: CPython",
24-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
28+
"License :: OSI Approved :: GNU Affero General Public License v3",
2529
"Operating System :: OS Independent"
2630
],
2731
license="AGPL-3.0"

0 commit comments

Comments
 (0)