Skip to content

Commit

Permalink
Build cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kwilcox committed Apr 4, 2023
1 parent 83811e2 commit c14573d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
python-version: "3.x"

- name: Get tags
continue-on-error: true
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ include reqs/*.yml

graft xpublish_intake

prune docs
prune tests
prune notebooks
prune *.egg-info
prune .github

exclude .gitignore
exclude .pre-commit-config.yaml
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ include-package-data = true
[tool.setuptools_scm]
write_to = "xpublish_intake/_version.py"
write_to_template = "__version__ = '{version}'"

[project.entry-points."xpublish.plugin"]
intake = "xpublish_intake.plugins:IntakePlugin"
1 change: 1 addition & 0 deletions reqs/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: xpublish-intake
channels:
- conda-forge
dependencies:
- conda-forge::build
- conda-forge::flake8
- conda-forge::httpx
- conda-forge::pre-commit
Expand Down
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
from setuptools import setup

setup(
entry_points={
'xpublish.plugin': [
'intake = xpublish_intake.plugins:IntakePlugin',
]
},
)
setup()

0 comments on commit c14573d

Please sign in to comment.