forked from fabiocaccamo/django-colorfield
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 632 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="django-colorfield",
version="0.0.2",
author="Jared Forsyth, Dan Johnson, Marco Bonetti",
author_email="mbonetti@gmail.com",
description="a small app providing a colorpicker field for django",
license="BSD",
keywords="django color picker",
url="https://github.com/mbi/django-colorfield",
packages=find_packages(),
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
include_package_data=True,
zip_safe=False
)