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    
yap-api / setup.py
Size: Mime:
from setuptools import setup

requirements = [
    'requests==2.22.0',
]

setup(
    name='yap-api',
    version='0.2.1',
    description='A Python API Wrapper for the YAP Server',
    author="The Open NLP Lab at the Open University of Israel",
    author_email="contact@chelem.co.il",
    url='https://github.com/research-software-company/yap-python-api',
    packages=['yap_api'],
    install_requires=requirements,
    keywords='yap',
    classifiers=[
        'Programming Language :: Python :: 3'
    ]
)