forked from vgaicuks/options
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 1.09 KB
/
setup.py
File metadata and controls
24 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(name='django-qoptions',
version='0.2.4',
description='Options, Labels and standalone Texts for django admin. Administrator emails, phones, contact data, etc.',
long_description='Options package allows you to create records in database, wich you can use in your templates and views.',
author='Vital Belikov',
author_email='vital@qwe.lv',
packages=['options', 'options.templatetags'],
url='https://github.com/Brick85/options/',
include_package_data=True,
zip_safe=False,
requires=['django(>=1.3)'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6, 3.8',
'Topic :: Utilities'],
license='New BSD')