-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 920 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 920 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fileObj:
longDescription = fileObj.read()
setup(
name="PyProfane",
packages=find_packages(),
version="1.0.7",
author="Ieshaan Saxena",
author_email="ieshaan1999@gmail.com",
description="A library to censor and detect offensive words in strings.",
long_description=longDescription,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/ieshaan12/PyProfane",
download_url="https://github.com/ieshaan12/PyProfane/archive/v1.0.7.tar.gz",
package_data={'PyProfane': ['data/swearWords.txt', 'data/comments.txt']},
classifiers=[
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)