This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (36 loc) · 1.72 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (C) 2014 Orange
# This software is distributed under the terms and conditions of the 'BSD
# 3-Clause' license which can be found in the 'LICENSE.txt' file in this package
# distribution or at 'http://opensource.org/licenses/BSD-3-Clause'.
#!/usr/bin/env python
"""Setup script for tinypyki."""
from distutils.core import setup
setup(name="tinypyki",
description="A tiny openssl command line wrapper.",
long_description="""Focus on your PKI and what you want of it, not
spending half an hour figuring out the basics
of openssl certificate generation.\n
\n""" + open("README.md", "r").read(),
author="botview",
author_email="[email protected]",
url="https://github.com/Orange-OpenSource",
license="BSD 3-Clause",
version="0.1",
packages=["tinypyki",],
py_modules=["tinypyki"],
classifiers=["License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Topic :: Security",
"Topic :: Internet",
"Topic :: Education :: Testing",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry"]
)