generated from Lerking/python-module-repo-template
13 lines
355 B
Python
13 lines
355 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='pluginlib',
|
|
version='0.0.1',
|
|
description='Module for plugin architecture',
|
|
license='MIT',
|
|
packages=['pluginlib'],
|
|
author='Jan Lerking',
|
|
author_email='jlg.subscriptions@gmail.com',
|
|
keywords=['plugin-architecture'],
|
|
url='https://gitpot-lerking.servehttp.com/Lerking/pluginlib'
|
|
) |