-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
36 lines (34 loc) · 1.03 KB
/
setup.py
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
#!/usr/bin/env python
# pycrtsh
# Copyright (c) 2017-2023 Etienne Tek Maynier
# This software is released under the MIT license
# See https://opensource.org/license/mit/
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pycrtsh",
version="0.3.12",
description="Python library to request crt.sh certificate information",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Te-k/pycrtsh",
author="Tek",
author_email="[email protected]",
keywords="security",
install_requires=[
"requests",
"lxml==5.3.0",
"beautifulsoup4>=4.12.3",
"python-dateutil",
"psycopg2-binary>=2.9.10",
],
license="MIT",
packages=["pycrtsh"],
entry_points={"console_scripts": ["certsh=pycrtsh.cli:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)