forked from coagulant/django-twitter-tag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 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
40
41
42
43
44
45
46
from os import path
import codecs
from setuptools import setup, find_packages
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
tests_require = [
'Django>=1.2',
'nose==1.2.1',
'mock==1.0.1',
'httpretty==0.5.9',
'sure==1.1.7',
'coveralls',
]
setup(
name='django-twitter-tag',
version='1.1.1',
author='Ilya Baryshev',
author_email='[email protected]',
packages=find_packages(exclude="tests"),
url='https://github.com/coagulant/django-twitter-tag',
license='MIT',
description="A django template tag to display user's recent tweets.",
long_description=read(path.join(path.dirname(__file__), 'README.rst')),
install_requires=[
"django-classy-tags==0.4",
"twitter==1.9.1",
"django-appconf==0.6",
'six==1.2.0',
],
tests_require=tests_require,
test_suite = "nose.collector",
extras_require={'test': tests_require},
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
)