forked from gerardo-orozco/django-template-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.16 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
33
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='django-template-utils',
version=__import__('template_utils').__version__,
description='Just a collection of useful template tags and filters gathered in a single app.',
long_description=README,
author='Gerardo Orozco Mosqueda',
author_email='[email protected]',
license='BSD',
url='https://github.com/gerardo-orozco/django-template-utils',
packages=find_packages(),
package_data={'template_utils': ['template_utils/templatetags/*.py']},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=[
'Django<3.1',
]
)