forked from hiviah/pyx509
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 878 Bytes
/
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
#!/usr/bin/env python
#
# setup-ified it
#
from setuptools import setup, find_packages
setup(
name = 'pyx509',
version = '0.6.0', # Would really like to link this to a tag/branch/whatever
install_requires = ['pyasn1 (>= 0.1.4)',],
author = 'hiviah',
author_email = 'hiviah@users.github.com',
license = 'GPL',
description = 'X.509 Certificate Parser for Python',
url = 'https://github.com/hiviah/pyx509',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Security',
],
packages = find_packages(),
)