-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
27 lines (25 loc) · 909 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
26
27
import os
from setuptools import setup, find_packages
f = open(os.path.join(os.path.dirname(__file__), 'README'))
readme = f.read()
f.close()
setup(
name='django-pygments',
version='0.1',
description='A django app that provides a template tag and 2 filters for \
doing syntax highlighting with Pygments',
long_description=readme,
author='Stefan Talpalaru',
author_email='[email protected]',
url='http://github.com/odeoncg/django-pygments/tree/master',
packages=find_packages(),
include_package_data=True,
install_requires=['pygments'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)