forked from kursitet/django-last-seen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·35 lines (28 loc) · 1.05 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
#!/usr/bin/env python
# coding: utf-8
import os
from distutils.core import setup
__author__ = 'Ferran Pegueroles'
__copyright__ = 'Copyright 2013, Ferran Pegueroles'
__credits__ = ['Ferran Pegueroles']
__license__ = 'GPL'
__version__ = '0.3'
__email__ = '[email protected]'
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='django-last-seen',
version=__version__,
url='http://bitbucket.org/ferranp/django-last-seen',
author=__author__,
author_email=__email__,
license='GPL',
packages=['last_seen', 'last_seen.migrations'],
description='Keep track of when a user has been last seen',
long_description=long_description,
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content']
)