-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1.11 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File name : setup.py
# Author : Podalirius (@podalirius_)
# Date created : 28 Jul 2022
import setuptools
long_description = """
"""
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = [x.strip() for x in f.readlines()]
setuptools.setup(
name="sectools",
version="1.5.1",
description="A python library containing the base functions for security tools",
url="https://github.com/p0dalirius/sectools",
author="Podalirius",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="podalirius@protonmail.com",
packages=["sectools", "sectools.data", "sectools.network", "sectools.web", "sectools.windows"],
package_data={'sectools': ['sectools/']},
include_package_data=True,
license="GPL2",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
install_requires=requirements,
)