Basic packaging
This commit is contained in:
parent
1583cda39b
commit
9494eee98c
5 changed files with 162 additions and 123 deletions
24
setup.py
Normal file
24
setup.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name="step-ca-inspector-client",
|
||||
description="Step CA Inspector Client",
|
||||
author="Benjamin Collet",
|
||||
author_email="benjamin@collet.eu",
|
||||
packages=find_packages(),
|
||||
#long_description=open("README.md").read(),
|
||||
#long_description_content_type="text/markdown",
|
||||
install_requires=["requests>=2.20.0,<3.0", "PyYAML", "tabulate"],
|
||||
keywords=["step-ca-inspector"],
|
||||
version="0.0.1",
|
||||
classifiers=[
|
||||
"Intended Audience :: Developers",
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Programming Language :: Python :: 3",
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"step-ca-inspector = step_ca_inspector_client.cli:main",
|
||||
],
|
||||
},
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue