-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.21 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
from setuptools import setup, find_packages
readme = open('README.md')
long_description = readme.read()
readme.close()
setup(
name='pkiexpress',
version='1.10.2',
author='Leonardo Pignataro',
author_email="[email protected]",
description='Classes to consume PKI Express',
long_description=long_description,
keywords='python pki express certificate digital signature x509',
url='https://github.com/LacunaSoftware/PkiExpressPython',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Operating System :: OS Independent",
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[],
)