-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update the name * * updating yml examples * updating names * remove dependency reqs.txt * abstract measurements * implemented measurements * removed testing folder * subclassing, implementing methods * * updated setup config * reimplementing measurements * adding necessary calculations for measurements * * removed orientation_dir for future * updated much repeated code * implemented angle * updated changelog
- Loading branch information
1 parent
388479f
commit 3cd3576
Showing
35 changed files
with
575 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,8 +47,10 @@ MANIFEST | |
|
||
# Per-project virtualenvs | ||
.venv*/ | ||
venv/ | ||
|
||
# Other | ||
.pylintrc | ||
test_notebooks | ||
.vscode/ | ||
.vscode/ | ||
testing/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,74 @@ | ||
# This file is used to configure your project. | ||
# Read more about the various options under: | ||
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files | ||
|
||
[metadata] | ||
name = lsGeoNetAdj | ||
description = Add a short description here! | ||
name = lsgeolib | ||
description = Library for defining Geodetic Networks and performing least square adjustments. | ||
author = jankovic_gd | ||
author-email = [email protected] | ||
license = mit | ||
url = https://pyscaffold.org/ | ||
long-description = file: README.rst | ||
# Change if running only on Windows, Mac or Linux (comma-separated) | ||
platforms = any | ||
# Add here all kinds of additional classifiers as defined under | ||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
keywords = geodesy, least squares, adjustment, network | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Programming Language :: Python | ||
Development Status :: 2 - Pre-Alpha | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
License :: OSI Approved :: MIT | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Mathematics | ||
Topic :: Education | ||
Intended Audience :: Developers | ||
Intended Audience :: Education | ||
|
||
[options] | ||
zip_safe = False | ||
packages = find: | ||
include_package_data = True | ||
package_dir = | ||
=src | ||
# DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD! | ||
setup_requires = pyscaffold>=3.1a0,<3.2a0 | ||
# Add here dependencies of your project (semicolon/line-separated), e.g. | ||
install_requires = pandas; pyyaml | ||
# The usage of test_requires is discouraged, see `Dependency Management` docs | ||
# tests_require = pytest; pytest-cov | ||
# Require a specific Python version, e.g. Python 2.7 or >= 3.4 | ||
# python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* | ||
install_requires = | ||
pandas>=1.0.0,<1.1 | ||
pyyaml>=5.3,<5.4 | ||
tests_require = | ||
pytest | ||
pytest-cov | ||
python_requires = >=3.7.* | ||
|
||
[options.packages.find] | ||
where = src | ||
exclude = | ||
tests | ||
|
||
[options.extras_require] | ||
# Add here additional requirements for extra features, to install with: | ||
# `pip install lsGeoNetAdj[PDF]` like: | ||
# PDF = ReportLab; RXP | ||
# Add here test requirements (semicolon/line-separated) | ||
testing = | ||
pytest | ||
pytest-cov | ||
dev = | ||
black | ||
flake8 | ||
all = | ||
pytest | ||
pytest-cov | ||
black | ||
flake8 | ||
|
||
[options.entry_points] | ||
# Add here console scripts like: | ||
# console_scripts = | ||
# script_name = lsgeonetadj.module:function | ||
# script_name = lsgeolib.module:function | ||
# For example: | ||
# console_scripts = | ||
# fibonacci = lsgeonetadj.skeleton:run | ||
# fibonacci = lsgeolib.skeleton:run | ||
# And any other entry points, for example: | ||
# pyscaffold.cli = | ||
# awesome = pyscaffoldext.awesome.extension:AwesomeExtension | ||
|
||
[test] | ||
# py.test options when running `python setup.py test` | ||
# addopts = --verbose | ||
extras = True | ||
|
||
[tool:pytest] | ||
# Options for py.test: | ||
# Specify command line options as you would do when invoking py.test directly. | ||
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml | ||
# in order to write a coverage file that can be read by Jenkins. | ||
addopts = | ||
--cov lsgeonetadj --cov-report term-missing | ||
--cov lsgeolib --cov-report term-missing | ||
--verbose | ||
norecursedirs = | ||
dist | ||
|
@@ -82,30 +81,26 @@ build = bdist_wheel | |
release = build upload | ||
|
||
[bdist_wheel] | ||
# Use this option if your package is pure-python | ||
universal = 1 | ||
|
||
[build_sphinx] | ||
source_dir = docs | ||
build_dir = docs/_build | ||
|
||
[devpi:upload] | ||
# Options for the devpi: PyPI server and packaging tool | ||
# VCS export must be deactivated since we are using setuptools-scm | ||
no-vcs = 1 | ||
formats = bdist_wheel | ||
|
||
[flake8] | ||
# Some sane defaults for the code style checker flake8 | ||
exclude = | ||
.tox | ||
build | ||
dist | ||
.eggs | ||
docs/conf.py | ||
max-line-length = 89 | ||
|
||
|
||
[pyscaffold] | ||
# PyScaffold's parameters when the project was created. | ||
# This will be used when updating. Do not change! | ||
version = 3.1 | ||
package = lsgeonetadj | ||
package = lsgeolib |
Oops, something went wrong.