Skip to content

Commit cad0fc2

Browse files
authored
Merge pull request #110 from mapillary/Rubix982/Release-Changes
[Release] Package Release Changes
2 parents 1819460 + bf22f5a commit cad0fc2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+555
-441
lines changed

MANIFEST.in

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
include README.md
1+
include README.md
2+
include *.env
3+
include *.lock
4+
include *.md
5+
include *.toml
6+
include Makefile
7+
include Pipfile
8+
recursive-include mapillary *.gitkeep
9+
recursive-include mapillary *.py
10+
recursive-include tests *.gitkeep
11+
recursive-include tests *.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
22

33
style:
4-
black mapillary && flake8 mapillary
4+
black src/mapillary && flake8 src/mapillary

Pipfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,12 @@ webencodings = "==0.5.1"
5050
Pygments = "==2.9.0"
5151
haversine = "*"
5252
python-dotenv = "*"
53-
osmnx = "*"
5453
shapely = "*"
5554
turfpy = "*"
5655
geojson = "*"
56+
build = "*"
5757

5858
[dev-packages]
59-
pip = "==19.0.3"
60-
wheel = "==0.33.1"
61-
twine = "==1.13.0"
6259
appdirs = "==1.4.4"
6360
black = "==21.6b0"
6461
flake8 = "==3.9.2"
@@ -69,6 +66,10 @@ pycodestyle = "==2.7.0"
6966
pyflakes = "==2.3.1"
7067
regex = "==2021.4.4"
7168
toml = "==0.10.2"
69+
pip = "*"
70+
wheel = "*"
71+
twine = "*"
72+
check-manifest = "*"
7273

7374
[requires]
7475
python_version = "3.8"

Pipfile.lock

Lines changed: 222 additions & 284 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ make style
7373

7474
This runs the `style` policy from the `Makefile`.
7575

76+
### Building package
77+
78+
To build the package, run `python3 setup.py sdist bdist_wheel`. To test out a local installation, run `pip install -e .`.
79+
7680
## Contributing
7781

7882
We welcome contributions! See [CONTRIBUTING](CONTRIBUTING.md) for details on how to get started, and our [code of conduct](CODE_OF_CONDUCT.md).

mapillary.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
[tool.black]
2-
line-length=79
2+
line-length=79
3+
4+
[build-system]
5+
requires = [
6+
"setuptools>=42",
7+
"wheel"
8+
]
9+
build-backend = "setuptools.build_meta"

mapillary/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

mapillary/__version__.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

mapillary/config/__init__.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

mapillary/config/api/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)