-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 905 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
#!/usr/bin/env python
from setuptools import setup
setup(name='fatbox-django-utils',
packages=[
'fatbox_utils',
'fatbox_utils.templatetags'
],
include_package_data=True,
version="1.2",
description='A collection of Django utilities, built by FatBox',
long_description=open('README.rst').read(),
author='Evan Borgstrom',
author_email='[email protected]',
url='https://github.com/fatbox/fatbox-django-utils',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['setuptools'])