forked from acurcie-st/django-ordered-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.62 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("requirements.txt") as f:
requires = f.read().splitlines()
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="django-ordered-model",
long_description=long_description,
long_description_content_type="text/markdown",
version="3.4.3",
description="Allows Django models to be ordered and provides a simple admin interface for reordering them.",
author="Ben Firshman",
author_email="[email protected]",
url="http://github.com/django-ordered-model/django-ordered-model",
packages=[
"ordered_model",
"ordered_model.management",
"ordered_model.management.commands",
],
requires=requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
zip_safe=False,
package_data={
"ordered_model": [
"static/ordered_model/arrow-up.gif",
"static/ordered_model/arrow-down.gif",
"static/ordered_model/arrow-top.gif",
"static/ordered_model/arrow-bottom.gif",
"locale/de/LC_MESSAGES/django.po",
"locale/de/LC_MESSAGES/django.mo",
"locale/pl/LC_MESSAGES/django.po",
"locale/pl/LC_MESSAGES/django.mo",
"templates/ordered_model/admin/order_controls.html",
]
},
)