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
|
from setuptools import setup
long_description = open("README.rst").read()
setup(
name="django-markupfield",
version="2.0.1",
package_dir={"markupfield": "markupfield"},
packages=["markupfield", "markupfield.tests"],
package_data={"markupfield": ["locale/*/*/*"]},
description="Custom Django field for easy use of markup in text fields",
author="James Turk",
author_email="dev@jamesturk.net",
license="BSD License",
url="https://github.com/jamesturk/django-markupfield/",
long_description=long_description,
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Environment :: Web Environment",
],
)
|