mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Improve setup.py
This commit is contained in:
parent
725e8c69f5
commit
9208227d92
1 changed files with 8 additions and 1 deletions
9
setup.py
9
setup.py
|
@ -56,6 +56,13 @@ setup(
|
|||
version=const.__version__,
|
||||
license=PROJECT_LICENSE,
|
||||
url=GITHUB_URL,
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/esphome/issues/issues",
|
||||
"Feature Request Tracker": "https://github.com/esphome/feature-requests/issues",
|
||||
"Source Code": "https://github.com/esphome/esphome",
|
||||
"Documentation": "https://esphome.io",
|
||||
"Twitter": "https://twitter.com/esphome_",
|
||||
},
|
||||
download_url=DOWNLOAD_URL,
|
||||
author=PROJECT_AUTHOR,
|
||||
author_email=PROJECT_EMAIL,
|
||||
|
@ -74,5 +81,5 @@ setup(
|
|||
'esphome = esphome.__main__:main'
|
||||
]
|
||||
},
|
||||
packages=find_packages()
|
||||
packages=find_packages(include="esphome.*")
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue