Permalink
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
anwala
first commit
64edaef
Aug 27, 2019
#!/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'] | |
) |