forked from IndustriaTech/django-orderedmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.01 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
# encoding=utf8
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.md')
setup(
name="django-orderedmodel",
version="0.1.6",
url='http://github.com/IndustriaTech/django-orderedmodel',
description="Intends to help you create models which can bemoved up\down (or left\right) with respect to each other.",
long_description=README,
author='Kirill Elagin',
author_email='[email protected]',
packages=[
'orderedmodel',
],
package_data={
'orderedmodel': [
'static/orderedmodel/*.gif',
'static/orderedmodel/*.js',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django>=1.4',
],
)