Skip to content

Commit 7b5fad0

Browse files
authored
Update packaging setup following PEP-517 and PEP-518 (#125)
* Update packaging setup following PEP-517 and PEP-518 * Update docs and CI * Remove unnecessary requirements files * Update contributing guide
1 parent f2d4a92 commit 7b5fad0

File tree

10 files changed

+75
-140
lines changed

10 files changed

+75
-140
lines changed

.github/CONTRIBUTING.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,21 @@ We use the following tools for linting and formatting:
2626
- [black](https://github.com/psf/black): formatter
2727
- [isort](https://github.com/timothycrosley/isort): sort imports
2828

29-
Style configurations of black and isort can be found in [pyproject.toml](../.pyproject.toml) and [.isort.cfg](../.isort.cfg).
29+
Style configurations of black and isort can be found in [pyproject.toml](../.pyproject.toml).
3030

3131
We use [pre-commit hook](https://pre-commit.com/) that checks and formats for `flake8`, `yapf`, `isort`,
3232
fixes `end-of-files`, automatically on every commit.
3333
The config for a pre-commit hook is stored in [.pre-commit-config](../.pre-commit-config.yaml).
3434

35-
After you clone the repository and installed cond environment, you will need to install initialize pre-commit hook.
35+
After you clone the repository, install pyodi and development requirements with:
3636

37+
```bash
38+
pip install -e .[dev]
3739
```
40+
41+
Then, you will need to install initialize pre-commit hook:
42+
43+
```bash
3844
pre-commit install
3945
```
4046

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,9 @@ jobs:
3030
uses: actions/setup-python@v2
3131
with:
3232
python-version: 3.7
33-
- name: Install build requirements
34-
shell: bash -l {0}
35-
run: pip install -r requirements/build.txt
3633
- name: Install pyodi
3734
shell: bash -l {0}
38-
run: rm -rf .eggs && pip install -e .[all]
35+
run: rm -rf .eggs && pip install .[dev]
3936
- name: Test with pytest
4037
shell: bash -l {0}
4138
run: pytest

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,17 @@ A simple tool for explore your object detection dataset. The goal of this librar
3636

3737

3838
## Installation
39+
40+
### From pypi
41+
```bash
42+
pip install pyodi
43+
```
44+
45+
### From source
3946
```bash
4047
git clone https://github.com/Gradiant/pyodi.git
41-
cd pyodi
42-
python setup.py install
48+
cd pyodi/
49+
pip install . # or "python setup.py install"
4350
```
4451

4552
## Contributing

pyproject.toml

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[build-system]
2+
requires = ["setuptools >= 40.9.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
15
[tool.black]
26
line-length = 88
37
include = '\.pyi?$'
@@ -15,6 +19,7 @@ exclude = '''
1519
| dist
1620
)/
1721
'''
22+
1823
[tool.isort]
1924
profile = "black"
2025
known_third_party = ["PIL", "ensemble_boxes", "loguru", "matplotlib", "numba", "numpy", "pandas", "plotly", "pycocotools", "pytest", "setuptools", "sklearn", "typer"]

requirements.txt

-2
This file was deleted.

requirements/build.txt

-2
This file was deleted.

requirements/dev.txt

-12
This file was deleted.

requirements/runtime.txt

-12
This file was deleted.

setup.cfg

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[metadata]
2+
name = pyodi
3+
version = 0.0
4+
author = Pyodi
5+
description = Object Detection Insights
6+
long_description = file: README.md
7+
long_description_content_type = text/markdown
8+
url = https://github.com/Gradiant/pyodi
9+
10+
[options]
11+
packages = find_namespace:
12+
python_requires = >=3.7
13+
install_requires =
14+
numpy==1.20.1
15+
ensemble-boxes==1.0.4
16+
loguru==0.5.3
17+
matplotlib==3.3.4
18+
numba==0.52.0
19+
pandas==1.2.1
20+
pillow==8.1.0
21+
plotly==4.14.3
22+
pycocotools-fix @ git+https://github.com/junjuew/cocoapi.git#subdirectory=PythonAPI
23+
kaleido==v0.1.0
24+
scikit-learn==0.24.1
25+
typer==0.3.2
26+
27+
[options.packages.find]
28+
exclude =
29+
build*
30+
docs*
31+
tests*
32+
33+
[options.extras_require]
34+
dev =
35+
black==20.8b1
36+
flake8==3.8.4
37+
flake8-docstrings==1.5.0
38+
isort==5.7.0
39+
mkdocs==1.1.2
40+
mkdocstrings==0.14.0
41+
mkdocs-material==6.2.8
42+
mypy==0.800
43+
pre-commit==2.10.1
44+
pydocstyle==5.1.1
45+
pymdown-extensions==8.1.1
46+
pytest==6.2.2
47+
48+
[options.entry_points]
49+
console_scripts =
50+
pyodi = pyodi.cli:app

setup.py

+2-104
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,4 @@
1-
"""Pyodi setup."""
2-
from setuptools import find_namespace_packages, setup
3-
4-
MODULE_NAME = "pyodi"
5-
PACKAGE_NAME = "pyodi"
6-
VERSION = "0.0"
7-
8-
9-
def parse_requirements(fname="requirements.txt", with_version=True):
10-
"""Parse the package dependencies listed in a requirements file.
11-
12-
Args:
13-
fname (str): path to requirements file
14-
with_version (bool, default=False): if True include version specs
15-
Returns:
16-
List[str]: list of requirements items
17-
CommandLine:
18-
python -c "import setup; print(setup.parse_requirements())"
19-
"""
20-
import re
21-
import sys
22-
from os.path import exists
23-
24-
require_fpath = fname
25-
26-
def parse_line(line):
27-
"""Parse information from a line in a requirements text file."""
28-
if line.startswith("-r "):
29-
# Allow specifying requirements in other files
30-
target = line.split(" ")[1]
31-
for info in parse_require_file(target):
32-
yield info
33-
else:
34-
info = {"line": line}
35-
if line.startswith("-e "):
36-
info["package"] = line.split("#egg=")[1]
37-
elif "@git+" in line:
38-
info["package"] = line
39-
else:
40-
# Remove versioning from the package
41-
pat = "(" + "|".join([">=", "==", ">"]) + ")"
42-
parts = re.split(pat, line, maxsplit=1)
43-
parts = [p.strip() for p in parts]
44-
45-
info["package"] = parts[0]
46-
if len(parts) > 1:
47-
op, rest = parts[1:]
48-
if ";" in rest:
49-
# Handle platform specific dependencies
50-
# http://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-platform-specific-dependencies
51-
version, platform_deps = map(str.strip, rest.split(";"))
52-
info["platform_deps"] = platform_deps
53-
else:
54-
version = rest # NOQA
55-
info["version"] = (op, version)
56-
yield info
57-
58-
def parse_require_file(fpath):
59-
with open(fpath, "r") as f:
60-
for line in f.readlines():
61-
line = line.strip()
62-
if line and not line.startswith("#"):
63-
for info in parse_line(line):
64-
yield info
65-
66-
def gen_packages_items():
67-
if exists(require_fpath):
68-
for info in parse_require_file(require_fpath):
69-
parts = [info["package"]]
70-
if with_version and "version" in info:
71-
parts.extend(info["version"])
72-
if not sys.version.startswith("3.4"):
73-
# apparently package_deps are broken in 3.4
74-
platform_deps = info.get("platform_deps")
75-
if platform_deps is not None:
76-
parts.append(";" + platform_deps)
77-
item = "".join(parts)
78-
yield item
79-
80-
packages = list(gen_packages_items())
81-
return packages
82-
1+
import setuptools
832

843
if __name__ == "__main__":
85-
setup(
86-
name=PACKAGE_NAME,
87-
version=VERSION,
88-
description="Object Detection Insights",
89-
author="Pyodi",
90-
keywords="computer vision, object detection",
91-
url="https://github.com/pyodi/pyodi",
92-
packages=find_namespace_packages(
93-
include="{}.*".format(MODULE_NAME), exclude=["tests", "logs"]
94-
),
95-
include_package_data=True,
96-
license="MIT License",
97-
platforms="any",
98-
python_requires=">=3.7",
99-
setup_requires=parse_requirements("requirements/build.txt"),
100-
tests_require=parse_requirements("requirements/dev.txt"),
101-
install_requires=parse_requirements("requirements/runtime.txt"),
102-
extras_require={"all": parse_requirements("requirements.txt")},
103-
ext_modules=[],
104-
zip_safe=False,
105-
entry_points={"console_scripts": ["pyodi = pyodi.cli:app"]},
106-
)
4+
setuptools.setup()

0 commit comments

Comments
 (0)