-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 937 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 937 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
27
28
29
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
version_num = "2.0.1"
with open(path.join(here, 'README.rst')) as fid:
long_desc = fid.read()
setup(
name='python_purify',
packages=['python_purify'],
version=version_num,
description='A python API for Web Purify',
long_description=long_desc,
author='Tom King, Kory Donati',
author_email='tomk@bixly.com, korydonati@gmail.com',
url='https://github.com/kingthomasc/python-purify',
download_url='https://github.com/kingthomasc/python-purify/tarball/{ver}'.format(
ver=version_num),
install_requires=['six',],
keywords=['profanity', 'filter', 'web purify', 'webpurify'],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)