-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·51 lines (49 loc) · 1.69 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
40
41
42
43
44
45
46
47
48
49
50
51
import os
from setuptools import setup, find_packages
from cached_hitcount import __version__
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-cached-hitcount",
version = __version__,
author = "Philip Roche",
author_email = "phil@philroche,net",
description = ("Basic app that allows you to track the number of hits/views for a particular object."),
license = "GPLv3",
keywords = "django hit count",
url = "https://github.com/philroche/django-cached-hitcount",
packages=find_packages(),
long_description=read('README.md'),
install_requires=[
'Django>=1.4,<1.7',
'python-memcached-stats==0.1',#git+git://github.com/dlrust/python-memcached-stats.git
'nexus',
'django-jsonfield<0.9.4',
'billiard',
'python-dateutil',
'gargoyle',
'django-celery',
'python-memcached',
'south',
'pyyaml',
'ua-parser',
'user-agents'
],
dependency_links=[
"https://github.com/dlrust/python-memcached-stats/tarball/master#egg=python-memcached-stats-0.1"
],
include_package_data=True,
zip_safe = False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)