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    
wbfsm / setup.py
Size: Mime:
from setuptools import find_packages, setup

requires = [
    "django ~=2.1",
    "django-filter ~=2.0",
    "djangorestframework ~=3.9",
    "django-fsm-log-pg ~= 2.0",
    "django-fsm ~=2.5",
    "django-fsm-admin ~=1.2",
    "dj-database-url ~= 0.5",
    "python-decouple ~=3.1",
    "channels ~=2.1",
    "channels-redis ~=2.3"
]

setup(
    name='wbfsm',
    version='1.1.1',
    python_requires='>=3.0',
    author='Intellineers GmbH & Co.KG/Stainly Sarl',
    author_email='c.wittlinger@intellineers.com',
    description='Extra utilities for DjangoFSM for the restframework.',
    license='(c) Intellineers GmbH & Co.KG/Stainly Sarl',
    packages=['wbfsm'],
    install_requires=requires
)