forked from ojii/django-template-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 1.03 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
from setuptools import setup
from templateserver import __version__ as version
with open('README.rst') 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', 'argparse'],
include_package_data=True,
zip_safe=False)