forked from martsberger/django-pivot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 912 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
27
28
29
from setuptools import setup, find_packages
def read_file(name):
with open(name) as fd:
return fd.read()
setup(
name='django-pivot',
version='1.8.1',
description='Create pivot tables and histograms from ORM querysets',
long_description=read_file('Readme.rst'),
url='https://github.com/martsberger/django-pivot',
download_url='https://github.com/martsberger/django-pivot/archive/1.8.1.tar.gz',
author='Brad Martsberger',
author_email='[email protected]',
license='MIT',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
packages=find_packages(),
install_requires=['django>=1.10', 'six']
)