forked from chrisspen/django-python-code-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 756 Bytes
/
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
from distutils.core import setup
import python_field
setup(
name = "django-python-code-field",
version = python_field.__version__,
description = "Store python source code (syntax checked) in database.",
url = "https://github.com/chrisspen/django-python-code-field/",
author = "Chris Spencer",
author_email = "[email protected]",
packages = [
"python_field",
],
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python :: 2.7',
'Environment :: Web Environment',
],
zip_safe = False,
install_requires = ['Django>=1.4'],
)