-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 719 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
def read(name):
return open(path.join(path.dirname(__file__), name)).read()
setup(
name='django-basic-stats',
description=("django-basic-stats is a simple traffic statistics application. "
"It show latest referrer, google queried terms or overall hits count. "
"It also provides optional logging and statistics for mobile devices."),
long_description=read("README.rst"),
version='0.2.0',
maintainer="Piotr Malinski",
maintainer_email="riklaunim@gmail.com",
include_package_data=True,
install_requires=(
'django',
),
packages=find_packages(),
)