-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
43 lines (40 loc) · 1.26 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
from os import path
import codecs
from setuptools import setup, find_packages
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
tests_require = [
'nose==1.2.1',
'mock==1.0.1',
'httpretty==0.5.9',
'sure==1.1.7',
]
setup(
name='django-twitter-tag',
version='1.2.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 :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
)