This repository was archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.22 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.22 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
#!/usr/bin/env python
import os
from setuptools import setup
directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="scanless",
packages=["scanless", "scanless.static"],
package_data={"scanless.static": ["*.txt"]},
version="2.2.1",
description="An online port scan scraper.",
long_description=long_description,
long_description_content_type="text/markdown",
license="Unlicense",
url="https://github.com/vesche/scanless",
author="Austin Jackson",
author_email="vesche@protonmail.com",
entry_points={
"console_scripts": [
"scanless = scanless.cli:main",
]
},
install_requires=["beautifulsoup4", "crayons", "requests"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
],
)