# generated from XKB map lt include common map 0x427 exclam 0x02 shift aogonek 0x02 altgr Aogonek 0x02 shift altgr at 0x03 shift ccaron 0x03 altgr Ccaron 0x03 shift altgr numbersign 0x04 shift eogonek 0x04 altgr Eogonek 0x04 shift altgr dollar 0x05 shift eabovedot 0x05 altgr Eabovedot 0x05 shift altgr percent 0x06 shift iogonek 0x06 altgr Iogonek 0x06 shift altgr asciicircum 0x07 shift scaron 0x07 altgr Scaron 0x07 shift altgr ampersand 0x08 shift uogonek 0x08 altgr Uogonek 0x08 shift altgr asterisk 0x09 shift umacron 0x09 altgr Umacron 0x09 shift altgr parenleft 0x0a shift doublelowquotemark 0x0a altgr parenright 0x0b shift leftdoublequotemark 0x0b altgr minus 0x0c underscore 0x0c shift equal 0x0d plus 0x0d shift zcaron 0x0d altgr Zcaron 0x0d shift altgr bracketleft 0x1a braceleft 0x1a shift bracketright 0x1b braceright 0x1b shift semicolon 0x27 colon 0x27 shift apostrophe 0x28 quotedbl 0x28 shift grave 0x29 asciitilde 0x29 shift backslash 0x2b bar 0x2b shift comma 0x33 less 0x33 shift period 0x34 greater 0x34 shift slash 0x35 question 0x35 shift endash 0x56 EuroSign 0x56 shift select> python cryptographyJames
aboutsummaryrefslogtreecommitdiffstats
path: root/vectors/setup.py
blob: 66841def85200251a12db046e8e96afec2bbd223 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import, division, print_function

import os

from setuptools import find_packages, setup


base_dir = os.path.dirname(__file__)

about = {}
with open(os.path.join(base_dir, "cryptography_vectors", "__about__.py")) as f:
    exec(f.read(), about)


setup(
    name=about["__title__"],
    version=about["__version__"],

    description=about["__summary__"],
    license=about["__license__"],
    url=about["__uri__"],
    author=about["__author__"],
    author_email=about["__email__"],

    packages=find_packages(),
    zip_safe=False,
    include_package_data=True
)