Skip to content
Snippets Groups Projects
Commit 87ed3826 authored by Carlos Vega's avatar Carlos Vega
Browse files

added setup for PMC Europe text mining service

parent 22eceafd
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
requirements = [
'numpy', 'requests'
]
test_requirements = [
'coverage'
]
setup(
name='textminingservice-pmc-europe',
version='0.0.1',
description="PMC Europe implementation of the common text mining interface",
url='',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
package_dir={'textminingservice-pmc-europe':
'textminingservice_pmc-europe'},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
tests_require=test_requirements,
)
import logging
logger = logging.getLogger(__name__)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment