From f27533e41fbc2f7ca279efde3ca2ae8a6b51aace Mon Sep 17 00:00:00 2001 From: J08nY Date: Thu, 15 Oct 2020 16:10:45 +0200 Subject: Add setup.py and Travis CI. --- .travis.yml | 10 ++++++++++ setup.py | 30 ++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .travis.yml create mode 100644 setup.py diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..493398bc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +os: linux +language: python +dist: xenial +python: "3.8" + +install: + - pip install . + +script: + - echo "Test here" diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..9f4d51b0 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 +from setuptools import setup + +setup( + name='sec-certs', + author='Petr Svenda', + author_email='', + version='0.0.0', + packages='sec-certs', + license='MIT', + description="Tool for analysis of security certificates", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + classifiers=[ + "Development Status :: 3 - Alpha", + "License :: OSI Approved :: MIT License", + "Topic :: Security", + "Topic :: Security :: Cryptography", + "Programming Language :: Python :: 3", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research" + ], + install_requires=[ + "PyPDF2", + "matplotlib", + "graphviz", + "numpy", + "tabulate" + ] +) -- cgit v1.3.1