forked from thornomad/django-hitcount
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 883 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-hitcount",
version = "0.2",
url = 'http://github.com/thornomad/django-hitcount',
license = 'BSD',
description = "Django hit counter application that tracks the number of hits/views for chosen objects",
long_description = read('README.md'),
author = 'Damon Timm',
author_email = '[email protected]',
packages = find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)