diff options
| -rw-r--r-- | .travis.yml | 10 | ||||
| -rw-r--r-- | setup.py | 30 |
2 files changed, 40 insertions, 0 deletions
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" + ] +) |
