-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (31 loc) · 911 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
30
31
32
33
34
35
36
37
38
39
40
# coding: utf-8
from distutils.core import setup
__version__ = '0.2.3'
short_description = 'Statistics for Django projects'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = short_description
install_requires = [
'Django>=1.7',
'jsonfield>=1.0.0',
'python-dateutil==2.5.3',
]
setup(
name='django-statsy',
packages=['statsy'],
version=__version__,
description=short_description,
long_description=long_description,
author='Alexander Zhebrak',
author_email='[email protected]',
license='MIT',
url='https://github.com/zhebrak/django-statsy',
download_url='https://pypi.python.org/pypi/django-statsy',
keywords=['django', 'statistics', 'analytics'],
install_requires=install_requires,
zip_safe=False,
include_package_data=True,
classifiers=[],
)