Update git repository links to LedFx/LedFx

This commit is contained in:
thatdonfc 2020-12-18 14:35:35 -08:00
parent 858a6d52f1
commit 9c91f4d72f
No known key found for this signature in database
GPG Key ID: 805A5EDAE682FD3A
3 changed files with 16 additions and 9 deletions

View File

@ -8,20 +8,24 @@
# -- Path setup --------------------------------------------------------------
import os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
import sys
import os
import sphinx_rtd_theme
sys.path.insert(0, os.path.abspath(".."))
import ledfx.consts as const
from ledfx.consts import PROJECT_NAME, PROJECT_VERSION
# -- Project information -----------------------------------------------------
PROJECT_NAME = "LedFx"
PROJECT_PACKAGE_NAME = "LedFx"
PROJECT_AUTHOR = "Austin Hodges"
PROJECT_PACKAGE_NAME = PROJECT_NAME
PROJECT_AUTHOR = const.__author__
PROJECT_COPYRIGHT = " 2018, {}".format(PROJECT_AUTHOR)
PROJECT_SHORT_DESCRIPTION = "LedFx is an open-source effect controller"
PROJECT_LONG_DESCRIPTION = (
@ -29,7 +33,7 @@ PROJECT_LONG_DESCRIPTION = (
"designed to synchronize reactive effects across "
"various networked devices."
)
PROJECT_GITHUB_USERNAME = "ahodges9"
PROJECT_GITHUB_USERNAME = "LedFx"
PROJECT_GITHUB_REPOSITORY = "LedFx"
PROJECT_GITHUB_BRANCH = "dev"
PROJECT_GITHUB_PATH = "{}/{}".format(
@ -40,6 +44,8 @@ PROJECT_GITHUB_URL = "https://github.com/{}".format(PROJECT_GITHUB_PATH)
project = "{}".format(PROJECT_NAME)
author = "{}".format(PROJECT_AUTHOR)
copyright = "{}".format(PROJECT_COPYRIGHT) + " & contributors"
version = PROJECT_VERSION
release = PROJECT_VERSION
# -- General configuration ---------------------------------------------------
@ -172,7 +178,7 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
# author, LaTeX theme [manual, howto]).
latex_documents = [
(
master_doc,

View File

@ -6,7 +6,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahodges9/ledfx.git"
"url": "https://github.com/LedFx/LedFx.git"
},
"dependencies": {
"@material-ui/core": "^4.10.2",

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
from setuptools import setup
import ledfx.consts as const
PROJECT_PACKAGE_NAME = "ledfx-dev"
@ -10,7 +11,7 @@ PROJECT_AUTHOR = "Austin Hodges"
PROJECT_AUTHOR_EMAIL = "austin.b.hodges@gmail.com"
PROJECT_MAINTAINER = "LedFx Devs"
PROJECT_MAINTAINER_EMAIL = "ledfx.app@gmail.com"
PROJECT_URL = "https://github.com/ahodges9/LedFx/tree/dev"
PROJECT_URL = "https://github.com/LedFx/LedFx/tree/dev"
# Need to install numpy first
SETUP_REQUIRES = ["numpy>=1.19.3"]
@ -51,7 +52,7 @@ setup(
project_urls={
"Documentation": "https://ledfx.readthedocs.io/en/docs/index.html",
"Website": "https://ledfx.app",
"Source": "https://github.com/ahodges9/LedFx",
"Source": "https://github.com/LedFx/LedFx",
"Discord": "https://discord.gg/PqXMuthSNx",
},
install_requires=INSTALL_REQUIRES,