forked from islco/django-trix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 931 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 931 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 setuptools import setup
long_description = open("README.rst").read()
setup(
name="django-trix",
version="0.3.3",
packages=["trix"],
include_package_data=True,
description="Trix rich text editor widget for Django",
url="https://github.com/bodedev/django-trix",
author="Jeremy Carbaugh",
author_email="jeremy@isl.co",
license="BSD",
long_description=long_description,
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)