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

MAINT: keep pyproject.toml updates in PR until working #25

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
q2_vizard._version.py export-subst
q2_vizard/_version.py export-subst
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all lint test test-cov install dev clean distclean
.PHONY: all lint test test-cov dev clean distclean

all: ;

Expand All @@ -12,9 +12,6 @@ test: all
test-cov: all
py.test --cov=q2_vizard

install: all
$(PYTHON) setup.py install

dev: all
pip install -e .

Expand Down
2 changes: 1 addition & 1 deletion ci/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ source:
build:
script-env:
- PLUGIN_VERSION
script: make install
script: {{ PYTHON }} -m pip install -v .

requirements:
build:
Expand Down
33 changes: 33 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[build-system]
requires = [
'setuptools>=64',
'versioneer[toml]==0.29',
'wheel'
]
build-backend = 'setuptools.build_meta'

[project]
name = 'q2-vizard'
authors = [
{name = 'Liz Gehret', email = '[email protected]'}
]
description = 'QIIME 2 Plugin used for generalized visualizations.'
readme = 'README.md'
license = {file = 'LICENSE'}
dynamic = ['version']

[tool.versioneer]
VCS = 'git'
style = 'pep440'
versionfile_source = 'q2_vizard/_version.py'
versionfile_build = 'q2_vizard/_version.py'
tag_prefix = ''
parentdir_prefix = 'q2-vizard-'

[project.urls]
Homepage = 'https://qiime2.org'
Documentation = 'https://docs.qiime2.org'
Repository = 'https://github.com/qiime2/q2-vizard'

[project.entry-points.'qiime2.plugins']
q2-vizard = 'q2_vizard.plugin_setup:plugin'
7 changes: 0 additions & 7 deletions setup.cfg

This file was deleted.

21 changes: 2 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,10 @@
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

from setuptools import setup, find_packages
from setuptools import setup

import versioneer

setup(
name='q2-vizard',
version=versioneer.get_version(),
packages=find_packages(),
package_data={
'q2_vizard': [
'assets/*',
'assets/heatmap/*',
'assets/scatterplot_2d/*'],
},
author='q2d2',
author_email='[email protected]',
description='QIIME 2 Plugin used for visualizations.',
license='BSD-3-Clause',
url='https://github.com/qiime2/q2-vizard',
zip_safe=False,
entry_points={
'qiime2.plugins': ['q2-vizard=q2_vizard.plugin_setup:plugin']
}
version=versioneer.get_version()
)
Loading
Loading