-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 1.12 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
"""
Flask-JSONlocale
-------------
This is the description for that library
"""
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Flask-JSONLocale',
version='1.12',
url='http://example.com/flask-jsonlocale/',
license='GNU',
author='Martin Urbanec',
author_email='[email protected]',
description='An extension for Flask allowing users to easily localize their Flask app',
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['flask_jsonlocale'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'simplejson'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)