-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
56 lines (51 loc) · 1.69 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
# -*- coding: utf-8 -*-
"""
Flask-Avatars
~~~~~~~~~~~~~~
All avatar generators in one place.
:author: Grey Li <[email protected]>
:copyright: (c) 2018 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-Avatars',
version='0.2.3',
description='All avatar generators in one place.',
url='https://github.com/helloflask/flask-avatars',
license='MIT',
author='Grey Li',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
platforms='any',
packages=['flask_avatars'],
zip_safe=False,
test_suite='test_flask_avatars',
include_package_data=True,
install_requires=[
'Flask',
'Pillow'
],
keywords='flask extension development',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)