forked from PetrDlouhy/django-qsstats-magic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (31 loc) · 1.19 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
#!/usr/bin/env python
from distutils.core import setup
for cmd in ('egg_info', 'develop'):
import sys
if cmd in sys.argv:
from setuptools import setup
setup(
name='django-qsstats-magic',
version='1.1.0',
description='A django microframework that eases the generation of aggregate data for querysets.',
long_description = open('README.rst').read(),
author='Matt Croydon, Mikhail Korobov',
author_email='[email protected], [email protected]',
url='https://github.com/PetrDlouhy/django-qsstats-magic',
packages=['qsstats'],
requires=['dateutil(>=1.4.1, < 2.0)', 'six'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)