Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wbutils / setup.py
Size: Mime:
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
)