-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 783 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 783 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-tagcon',
version='0.1alpha1',
description="A template tag constructor library for Django.",
long_description=read('README.rst'),
author='Tom Tobin',
author_email='[email protected]',
license='MIT',
url='http://github.com/korpios/django-tagcon',
py_modules=['tagcon'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)