You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
614 B
Python
26 lines
614 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='identicon',
|
|
version='1.0.0',
|
|
author='Kristóf Tóth',
|
|
author_email='mrtoth@strongds.hu',
|
|
description='CLI tool and library to generate OpenSSH style randomart identicons for arbitrary data.',
|
|
url='https://git.strongds.hu/mrtoth/identicon',
|
|
packages=['identicon'],
|
|
entry_points={
|
|
'console_scripts': ['identicon=identicon.__main__:main'],
|
|
},
|
|
install_requires=[
|
|
'blake3',
|
|
'click',
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'pytest',
|
|
'pylint',
|
|
'rope',
|
|
],
|
|
},
|
|
)
|