forked from esphome/esphome-flasher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (44 loc) · 1.63 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
"""wledflasher setup script."""
import os
from setuptools import setup, find_packages
from wledflasher import const
PROJECT_NAME = "wledflasher"
PROJECT_PACKAGE_NAME = "wledflasher"
PROJECT_LICENSE = "MIT"
PROJECT_AUTHOR = "WLED"
PROJECT_COPYRIGHT = "2020, WLED"
PROJECT_URL = "https://wbld.app"
PROJECT_EMAIL = "[email protected]"
PROJECT_GITHUB_USERNAME = "andyshinn"
PROJECT_GITHUB_REPOSITORY = "wled-flasher"
PYPI_URL = "https://pypi.python.org/pypi/{}".format(PROJECT_PACKAGE_NAME)
GITHUB_PATH = "{}/{}".format(PROJECT_GITHUB_USERNAME, PROJECT_GITHUB_REPOSITORY)
GITHUB_URL = "https://github.com/{}".format(GITHUB_PATH)
DOWNLOAD_URL = "{}/archive/{}.zip".format(GITHUB_URL, const.__version__)
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "requirements.txt")) as requirements_txt:
REQUIRES = requirements_txt.read().splitlines()
with open(os.path.join(here, "README.md")) as readme:
LONG_DESCRIPTION = readme.read()
setup(
name=PROJECT_PACKAGE_NAME,
version=const.__version__,
license=PROJECT_LICENSE,
url=GITHUB_URL,
download_url=DOWNLOAD_URL,
author=PROJECT_AUTHOR,
author_email=PROJECT_EMAIL,
description="WLED firmware flasher",
include_package_data=True,
zip_safe=False,
platforms="any",
test_suite="tests",
python_requires=">=3.5,<4.0",
install_requires=REQUIRES,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords=["wled", "lighting", "firmware"],
entry_points={"console_scripts": ["wledflasher = wledflasher:main"]},
packages=find_packages(include="wledrelease.*"),
)