Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
@anwala anwala first commit 64edaef Aug 27, 2019
1 contributor

Users who have contributed to this file

30 lines (25 sloc) 839 Bytes
#!/usr/bin/env python
from setuptools import setup, find_packages
from NwalaTextUtils import __version__
desc = """Collection of functions for processing text"""
setup(
name='NwalaTextUtils',
version=__version__,
description=desc,
long_description='See: https://github.com/oduwsdl/NwalaTextUtils/',
author='Alexander C. Nwala',
author_email='anwala@cs.odu.edu',
url='https://github.com/oduwsdl/NwalaTextUtils/',
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
'requests',
'beautifulsoup4'
],
dependency_links=['http://github.com/misja/python-boilerpipe/tarball/master#egg=python-boilerpipe']
)
You can’t perform that action at this time.