-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 1.08 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
import os
from setuptools import setup
from templateserver import __version__ as version
README = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(README) as fobj:
long_description = fobj.read()
setup(name="django-template-server",
version=version,
description="Makes it easy to test Django templates",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='django templates',
author='Jonas Obrist',
author_email='[email protected]',
url='http://github.com/ojii/django-template-server',
license='BSD',
packages=['templateserver'],
entry_points=dict(console_scripts=['maketemplateserver=templateserver.maketemplateserver:main']),
install_requires=['virtualenv>=1.6'],
include_package_data=True,
zip_safe=False)