-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·36 lines (33 loc) · 991 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
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
"""
Install wagtail-charcount using setuptools
"""
with open("README.md", "r") as f:
readme = f.read()
from setuptools import find_packages, setup
setup(
name="wagtail-charcount",
version="0.2.0",
description="A wagtail character and word counting plugin for RichTextFields.",
long_description=readme,
long_description_content_type="text/markdown",
author="Liam Brenner",
author_email="[email protected]",
url="https://github.com/takeflight/wagtail-charcount",
install_requires=[
"wagtail>=4.1",
],
zip_safe=False,
license="BSD License",
packages=find_packages(),
include_package_data=True,
package_data={},
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
],
)