Browse Source

Changing URLs and email addresses

Changing URLs and email addresses for Github
master
Nate Bohman 4 years ago
parent
commit
47c9826f0a
Signed by: Nate Bohman <natrinicle@gmail.com> GPG Key ID: C10546A54ABA1CE5
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      setup.py
  2. +1
    -1
      shm_dict/shm_dict.py

+ 3
- 3
setup.py View File

@@ -26,11 +26,11 @@ setup(
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Nate Bohman",
author_email="natrinicle@natrinicle.com",
url="https://natrinicle.com",
author_email="natrinicle-shm_dict@natrinicle.com",
url="https://github.com/Natrinicle/shm_dict",
license="LGPL-3",
keywords="posix ipc semaphore shm shared memory dict dictionary",
project_urls={"Source": "https://git.natrinicle.com/natrinicle/shm_dict.git"},
project_urls={"Source": "https://github.com/Natrinicle/shm_dict"},
packages=find_packages(),
install_requires=open("requirements.txt").read().split("\n"),
extras_require={"dev": open("requirements-dev.txt").read().split("\n")},

+ 1
- 1
shm_dict/shm_dict.py View File

@@ -30,7 +30,7 @@ __author__ = "Nate Bohman"
__credits__ = ["Nate Bohman"]
__license__ = "LGPL-3"
__maintainer__ = "Nate Bohman"
__email__ = "natrinicle@natrinicle.com"
__email__ = "natrinicle-shm_dict@natrinicle.com"
__status__ = "Production"

logger = logging.getLogger(__name__) # pylint: disable=invalid-name

Loading…
Cancel
Save