Skip to content

Commit 7f46772

Browse files
committed
moving around definitions of key values
1 parent e48af81 commit 7f46772

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

osquery/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
__author__ = "osquery developers"
99
__license__ = "BSD"
1010
__copyright__ = "Copyright 2015 Facebook"
11-
__author_email__ = "osquery@fb.com"
12-
__description__ = "osquery python api"
1311
__url__ = "https://osquery.io"
1412

1513
__all__ = [

setup.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,24 +69,18 @@ def run(self):
6969
__INIT__, re.MULTILINE).group(1)
7070
VERSION = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
7171
__INIT__, re.MULTILINE).group(1)
72-
DESCRIPTION = re.search(r'^__description__\s*=\s*[\'"]([^\'"]*)[\'"]',
73-
__INIT__, re.MULTILINE).group(1)
7472
AUTHOR = re.search(r'^__author__\s*=\s*[\'"]([^\'"]*)[\'"]',
7573
__INIT__, re.MULTILINE).group(1)
76-
AUTHOR_EMAIL = re.search(r'^__author_email__\s*=\s*[\'"]([^\'"]*)[\'"]',
77-
__INIT__, re.MULTILINE).group(1)
78-
URL = re.search(r'^__url__\s*=\s*[\'"]([^\'"]*)[\'"]',
79-
__INIT__, re.MULTILINE).group(1)
8074
LICENSE = re.search(r'^__license__\s*=\s*[\'"]([^\'"]*)[\'"]',
8175
__INIT__, re.MULTILINE).group(1)
8276

8377
setup(name=TITLE,
8478
version=VERSION,
85-
description=DESCRIPTION,
79+
description="Osquery Python API",
8680
long_description=README,
8781
author=AUTHOR,
88-
author_email=AUTHOR_EMAIL,
89-
url=URL,
82+
author_email="osquery@fb.com",
83+
url="https://osquery.io",
9084
license=LICENSE,
9185
packages=["osquery",],
9286
install_requires=[

0 commit comments

Comments
 (0)