This repository was archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (51 loc) · 1.55 KB
/
setup.py
File metadata and controls
60 lines (51 loc) · 1.55 KB
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
56
57
58
59
60
"""
Python library for the codectrl-logger program.
This library is used for setting up codectrl
More information on this can be found at:
https://github.com/Authentura/codectrl/
"""
import os
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fd:
long_description = "\n" + fd.read()
VERSION = "1.0.0"
DESCRIPTION = "A python logger module for the CodeCTRL application"
LONG_DESCRIPTION = long_description
SEARCH_KEYWORDS=[
"Authentura",
"authentura",
"pwnCTRL",
"CodeCTRL",
"logging",
"source code analysis",
"source code",
"analysis",
"security",
"vulnerability research"
]
DEPENDENCIES=[
"grpcio==1.50.0"
]
setup(
name="codectrl",
version=VERSION,
license="MIT",
author="Authentura",
author_email="contact@authentura.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=DEPENDENCIES,
keywords=SEARCH_KEYWORDS,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
)