forked from emdemir/Flask-Babel-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.01 KB
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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE/"README.md").read_text()
setup(
name="Flask-Babel-JS",
version="1.0.2",
url="https://github.com/emdemir/Flask-Babel-JS/",
license="BSD",
author="Efe Mert Demir",
author_email="efemertdemir@hotmail.com",
description="Flask extension to add Flask-Babel translations in JS",
long_description=README,
long_description_content_type="text/markdown",
packages=["flask_babel_js"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"Flask",
"flask-babel"
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)