aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPetr Svenda2020-10-15 17:25:50 +0200
committerGitHub2020-10-15 17:25:50 +0200
commit79ed1029a1f2fa3395a35ab8d5382af886d7ea7b (patch)
tree1c153fe53ef5cb1bd502b3de66efe11b92b7ffc0
parentf765f1d9a3bdcfc7a748c2684546817d5b6bfece (diff)
parentf27533e41fbc2f7ca279efde3ca2ae8a6b51aace (diff)
downloadsec-certs-79ed1029a1f2fa3395a35ab8d5382af886d7ea7b.tar.gz
sec-certs-79ed1029a1f2fa3395a35ab8d5382af886d7ea7b.tar.zst
sec-certs-79ed1029a1f2fa3395a35ab8d5382af886d7ea7b.zip
Merge pull request #2 from J08nY/feature/setup
Add setup.py and Travis CI.
-rw-r--r--.travis.yml10
-rw-r--r--setup.py30
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"
+ ]
+)