mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 07:30:24 +00:00
16 lines
316 B
Python
Executable file
16 lines
316 B
Python
Executable file
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='apphub',
|
|
version='0.2',
|
|
packages=find_packages(where='src'),
|
|
package_dir={'': 'src'},
|
|
install_requires=[
|
|
'click',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'apphub=cli.apphub_cli:cli',
|
|
],
|
|
},
|
|
)
|