-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (39 loc) · 1.32 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 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('colorbox').__version__
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name ='coop-colorbox',
version = VERSION,
description ='Manage lightboxes within coop-cms',
long_description = open('README.rst').read(),
packages = ['colorbox'],
include_package_data = True,
author = 'Luc Jean',
author_email = '[email protected]',
license ='BSD',
url = "https://github.com/quinode/coop-colorbox/",
download_url = "https://github.com/quinode/coop-colorbox/tarball/master",
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Natural Language :: English',
'Natural Language :: French',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)