diff options
| author | J08nY | 2020-10-15 16:10:45 +0200 |
|---|---|---|
| committer | J08nY | 2020-10-15 16:10:45 +0200 |
| commit | f27533e41fbc2f7ca279efde3ca2ae8a6b51aace (patch) | |
| tree | 0f1fec016d14d6558fcfecf2c57880ee54d969b8 | |
| parent | 8c6925bae47608ac89b7b4e3cd2d788453ddfd82 (diff) | |
| download | sec-certs-f27533e41fbc2f7ca279efde3ca2ae8a6b51aace.tar.gz sec-certs-f27533e41fbc2f7ca279efde3ca2ae8a6b51aace.tar.zst sec-certs-f27533e41fbc2f7ca279efde3ca2ae8a6b51aace.zip | |
Add setup.py and Travis CI.
| -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" + ] +) |
