Repository URL to install this package:
|
Version:
1.0.1 ▾
|
wbutils
/
setup.py
|
|---|
from setuptools import find_packages, setup
requires = [
"django ~=2.1",
"django-filter ~=2.0",
"djangorestframework ~=3.9"
]
setup(
name='wbutils',
version='1.0.1',
python_requires='>=3.0',
author='Intellineers GmbH & Co.KG/Stainly Sarl',
author_email='c.wittlinger@intellineers.com',
description='Utilities for the workbench',
license='(c) Intellineers GmbH & Co.KG/Stainly Sarl',
packages=['wbutils'],
install_requires=requires
)