forked from fcurella/django-social-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (37 loc) · 1.24 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
import io
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as fp:
README = fp.read()
with open(os.path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
requirements = []
test_requirements = [
"Django>=1.7",
]
setup(
name="django-social-share",
version=version,
description="Templatetags for 'tweet this' and 'share on facebook'",
long_description=README,
url='https://github.com/fcurella/django-social-share',
license='MIT',
author='Flavio Curella',
author_email='flavio.curella@curella.org',
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'
)