forked from fcurella/django-social-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.11 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
import os
from setuptools import setup, find_packages
VERSION = '1.1.2'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
test_requirements = [
"Django>=1.7",
]
setup(
name="django-social-share",
version=VERSION,
description="Templatetags for 'tweet this' and 'share on facebook'",
long_description=read('README.rst'),
url='https://github.com/fcurella/django-social-share',
license='MIT',
author='Flavio Curella',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=requirements,
tests_require=test_requirements,
test_suite='django_social_share.tests.runtests.runtests'
)