Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add manifest and update requirements files pre-conda-forge release #175

Merged
merged 8 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
include LICENSE
prune .github*
prune doc*
prune examples*
prune icepyx/tests*
exclude .coveragerc
exclude .gitignore
exclude .mailmap
exclude *.ini
exclude *.txt
exclude *.yaml
exclude *.yml
include requirements.txt
2 changes: 1 addition & 1 deletion icepyx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from icepyx.core.query import Query

from _version import version as __version__
from _icepyx_version import version as __version__
1 change: 1 addition & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ python:
version: 3.7
install:
- requirements: requirements-docs.txt
requirements.txt
6 changes: 4 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
black
codecov
pre_commit
pypistats[pandas]
flake8
pre-commit
pypistats
pytest>=4.6
pytest-cov
1 change: 0 additions & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ numpydoc
pybtex
pygithub
sphinxcontrib-bibtex
-r requirements.txt
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ matplotlib
numpy
requests
shapely
xarray
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
],
py_modules=["_icepyx_version"],
use_scm_version={
"fallback_version": "unknown",
"local_scheme": "node-and-date",
"write_to": "_version.py",
"local_scheme": "no-local-version",
JessicaS11 marked this conversation as resolved.
Show resolved Hide resolved
"write_to": "_icepyx_version.py",
"write_to_template": 'version = "{version}"\n',
},
setup_requires=["setuptools>=30.3.0", "wheel", "setuptools_scm"],
Expand Down