-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 689 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 689 Bytes
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
from distutils.core import setup
setup(
name='derlite',
version='0.2.1',
description='Lightweight, pythonic DER/BER encoder/decoder',
package_dir={'': 'src'},
py_modules=[ 'derlite' ],
author='Wim Lewis',
author_email='wiml@hhhh.org',
url='https://github.com/wiml/derlite',
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Networking',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)