forked from stefanbackor/django-debug-toolbar-pycassa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 967 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 967 Bytes
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
from setuptools import setup, find_packages
setup(
name='django-debug-toolbar-pycassa',
version=":versiontools:debug_toolbar_pycassa:",
description='Pycassa (Apache Cassandra) panel for the Django Debug Toolbar',
long_description=open('README.md').read(),
author='Stevo Backor',
author_email='stevo@backor.sk',
url='https://github.com/pista329/django-debug-toolbar-pycassa',
license='MIT',
packages=find_packages(), #exclude=('example', )
include_package_data=True,
zip_safe=False,
setup_requires=[
'versiontools >= 1.6',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)