This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
forked from bashu/django-tracking
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (37 loc) · 1.34 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
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
import activeusers
setup(
name='django-activeusers',
version=activeusers.get_version(),
description="Just active-visitor tracking for Django",
long_description=open('README.rst', 'r').read(),
keywords='django, active, visitors, users, tracking',
author='Alvin Savoy',
author_email='none',
url='http://github.com/asavoy/django-activeusers',
license='MIT',
package_dir={'activeusers': 'activeusers'},
include_package_data=True,
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: Log Analysis",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Page Counters",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Security",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
)