-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (54 loc) · 1.71 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
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
VERSION = '{{PACKAGE_VERSION}}'
setup(
name="chalice_babel",
version=VERSION,
author="Sufle",
author_email="[email protected]",
description="Chalice Babel Package",
long_description_content_type="text/markdown",
long_description=README,
url="https://github.com/sufleio/chalice-babel",
license="MIT",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"Babel>=2.10.3",
"chalice>=1.26.6",
"Jinja2>=3.1.2",
"pytz>=2022.5",
"Werkzeug>=2.2.2",
],
extras_require={
"dev": [
"pytest",
"pytest-mock",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=False,
entry_points="""
[console_scripts]
chalice_babel = chalice_babel.command.main:main
[distutils.commands]
import = chalice_babel.command.main:import_strings
export_strings = chalice_babel.command.main:export_strings
""",
)