-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (32 loc) · 1021 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
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
# Copyright 2020 Marcos Del Sol Vives <[email protected]>
# SPDX-License-Identifier: WTFPL
import os.path
from setuptools import setup, find_packages
def read(file):
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, file), encoding='utf-8') as f:
content = f.read()
return content
setup(
name='leekoq',
packages=['leekoq'],
version='1.0',
license='WTFPL',
description='Python implementation of Keeloq encryption algorithm',
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='keeloq microchip code-hopping rolling-code',
classifiers=[
'Topic :: Security',
'Topic :: Security :: Cryptography',
'License :: Freely Distributable'
],
url='https://github.com/socram8888/leekoq',
project_urls={
'Bug Tracker': 'https://github.com/socram8888/leekoq/issues',
'Source Code': 'https://github.com/socram8888/leekoq'
},
author='Marcos Del Sol Vives',
author_email='[email protected]',
)