aboutsummaryrefslogtreecommitdiff
path: root/dev/__init__.py
blob: a4b5cb470d03cbe6104c3483b9323971174ea291 (plain)
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
# coding: utf-8
from __future__ import unicode_literals, division, absolute_import, print_function

import os


package_name = "asn1crypto"

other_packages = [
    "oscrypto",
    "certbuilder",
    "certvalidator",
    "crlbuilder",
    "csrbuilder",
    "ocspbuilder"
]

task_keyword_args = []

requires_oscrypto = False
has_tests_package = True

package_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
build_root = os.path.abspath(os.path.join(package_root, '..'))

md_source_map = {}

definition_replacements = {}