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

setup(
    name='wbcrm',
    version='0.1.4',
    author='Intellineers GmbH & Co.KG',
    author_email='info@intellineers.com',
    packages=find_packages(),
    install_requires=['djangorestframework>=3.8.0', 'django>=2.1.0', 'ics==0.4'],
    include_package_data=True,
)