-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
25 lines (23 loc) · 862 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="profanity-check",
version="1.0.3",
author="Victor Zhou",
author_email="vzhou842@gmail.com",
description="A fast, robust library to check for offensive language in strings.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vzhou842/profanity-check",
packages=setuptools.find_packages(),
install_requires=['joblib>=0.14.1', 'scikit-learn>=0.20.2'],
package_data={ 'profanity_check': ['data/model.joblib', 'data/vectorizer.joblib'] },
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)