-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
62 lines (51 loc) · 2 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
"""
A Flask extension to simplify building mobile-friendly sites.
Full documentation is available at:
http://flask-mobility.readthedocs.org/en/latest/
"""
import os
import sys
from setuptools import find_packages, setup
from setuptools.command.install import install
ROOT = os.path.abspath(os.path.dirname(__file__))
version = __import__("flask_mobility").__version__
class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
description = "verify that the git tag matches our version"
def run(self):
tag = os.getenv("CIRCLE_TAG")
if tag != "v{}".format(version):
info = "Git tag: {0} does not match the version of this app: {1}".format(tag, version)
sys.exit(info)
setup(
name="Flask-Mobility",
version=version,
url="https://github.com/rehandalal/flask-mobility",
license="Mozilla Public License Version 2.0",
author="Rehan Dalal",
author_email="[email protected]",
description="A Flask extension to simplify building mobile-friendly sites.",
long_description=__doc__,
packages=find_packages(exclude=["tests", "docs"]),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=["Flask"],
py_modules=["flask_mobility"],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"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",
],
cmdclass={"verify": VerifyVersionCommand},
)