forked from rhblind/django-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = "django-files",
version = "1.1",
description = "Django attachments ContentTypes micro framework.",
long_description = "Attachments framework based on ContentTypes and the django.contrib.comments system.",
keywords = "django file attachment upload storage",
license = open("LICENSE.md").read(),
author = "Rolf Håvard Blindheim",
author_email = "[email protected]",
url = "https://github.com/rhblind/django-files",
install_requires = [
"django",
"django-braces"
],
packages = [
"files",
"files.management",
"files.templatetags"
],
package_data = {
"files": [
"static/css/*.css",
"static/images/*.png",
"static/javascripts/*.js",
"templates/attachments/*.html",
]
},
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)