mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
17 lines
316 B
Python
17 lines
316 B
Python
|
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',
|
||
|
],
|
||
|
},
|
||
|
)
|