Skip to content

Commit

Permalink
Added setup.py and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Apr 13, 2023
1 parent d703157 commit 55603d7
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sectools>=1.3.9
xlsxwriter
requests
41 changes: 41 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File name : setup.py
# Author : Podalirius (@podalirius_)
# Date created : 24 Jul 2022

import setuptools

with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()

with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = [x.strip() for x in f.readlines()]

setuptools.setup(
name="apachetomcatscanner",
version="3.5",
description="",
url="https://github.com/p0dalirius/ApacheTomcatScanner",
author="Podalirius",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="podalirius@protonmail.com",
packages=["apachetomcatscanner"],
package_data={'apachetomcatscanner': ['apachetomcatscanner/']},
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.6',
install_requires=requirements,
entry_points={
'console_scripts': [
'apachetomcatscanner=apachetomcatscanner.__main__:main',
'ApacheTomcatScanner=apachetomcatscanner.__main__:main'
]
}
)

0 comments on commit 55603d7

Please sign in to comment.