-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 907 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 907 Bytes
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cmsplugin-pygments",
version = "0.7.3",
url = 'http://github.com/fivethreeo/cmsplugin-pygments',
license = 'BSD',
description = "django-cms plugin for pygments",
author = 'Oyvind Saltvik',
author_email = 'oyvind.saltvik@gmail.com',
packages = find_packages(),
install_requires=[
'pygments',
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
include_package_data=True,
zip_safe = False
)