-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.18 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
File not currently in use, please view pyproject.toml instead
"""
from setuptools import setup, find_packages
VERSION = "0.1.1"
DESCRIPTION = "A simple and lightweight profanity filter package."
LONG_DESCRIPTION = ""
REQUIREMENTS = [
""
]
setup(
name="pyfanity",
version=VERSION,
author="Kevin Tang",
author_email="[email protected]",
license="MIT",
url="https://github.com/stampixel/pyfanity",
install_requires=REQUIREMENTS,
keywords=[
"profanity",
"profanity blocker",
"swear",
"langauge",
"language-filter",
],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)