-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
144 lines (121 loc) · 4.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# -*- coding: utf-8 -*-
import codecs
import os
import subprocess
import sys
from shutil import rmtree
from setuptools import setup, find_packages, Command
from baato import config
here = os.path.abspath(os.path.dirname(__file__))
long_description = ""
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as readme:
long_description = readme.read()
class BaseCommand(Command):
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def _run(self, s, command):
try:
self.status(s + "\n" + " ".join(command))
subprocess.check_call(command)
except subprocess.CalledProcessError as error:
sys.exit(error.returncode)
class ValidateCommand(BaseCommand):
"""Support setup.py validate."""
description = "Run Python static code analyzer (flake8), formatter (black) and unit tests (pytest)."
user_options = [("test-target=", "i", "tests/{test-target}")]
def initialize_options(self):
self.test_target = ""
def run(self):
self._run(
"Installing test dependencies ...",
[sys.executable, "-m", "pip", "install", "-r", f"{here}/requirements.txt"],
)
self._run("Running black ...", [sys.executable, "-m", "black", f"{here}/baato"])
self._run("Running flake8 for legacy packages ...", [sys.executable, "-m", "flake8", f"{here}/baato"])
self._run(
"Running unit tests ...",
[
sys.executable,
"-m",
"pytest",
],
)
class UploadCommand(BaseCommand):
"""Support setup.py upload."""
description = "Build and publish the package."
def run(self):
self._run(
"Installing upload dependencies ...",
[sys.executable, "-m", "pip", "install", "wheel"],
)
try:
self.status("Removing previous builds ...")
rmtree(os.path.join(here, "dist"))
rmtree(os.path.join(here, "build"))
except OSError:
pass
self._run(
"Building Source and Wheel (universal) distribution ...",
[sys.executable, "setup.py", "sdist", "bdist_wheel", "--universal"],
)
self._run(
"Installing Twine dependency ...",
[sys.executable, "-m", "pip", "install", "twine"],
)
self._run(
"Uploading the package to PyPI via Twine ...",
[sys.executable, "-m", "twine", "upload", "dist/*"],
)
setup(
name="baato",
version=config.__version__,
description="Baato API for Python",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"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",
],
keywords=["Baato", "Python", "DRY"],
author="Kathmandu Living Labs Consult",
author_email="[email protected]",
url="https://github.com/baato/python-client",
license="MIT License",
packages=find_packages(
exclude=[
"docs",
"tests",
"tests.*",
"tutorial",
]
),
include_package_data=True,
install_requires=[
"requests",
"decorator",
"certifi",
],
python_requires=">=3.6",
setup_requires=["setuptools_scm"],
cmdclass={
"validate": ValidateCommand,
"upload": UploadCommand,
},
)