-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
63 lines (58 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
Flask-Share
~~~~~~~~~~~~~~
Create social share component in Jinja2 template based on share.js.
:author: Grey Li <[email protected]>
:copyright: (c) 2017 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from os import path
from codecs import open
from setuptools import setup
basedir = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(basedir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Flask-Share',
version='0.1.1',
url='https://github.com/greyli/flask-share',
license='MIT',
author='Grey Li',
author_email='[email protected]',
description='Create social share component in Jinja2 template based on share.js.',
long_description=long_description,
long_description_content_type='text/markdown',
platforms='any',
packages=['flask_share'],
zip_safe=False,
test_suite='test_flask_share',
include_package_data=True,
install_requires=[
'Flask'
],
extras_require={
'dev': [
'coverage',
'flake8',
'tox',
],
},
keywords='flask extension development',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)