Skip to content

Commit

Permalink
Merge pull request #1 from TOMToolkit/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
dmcollom committed Mar 8, 2021
2 parents 522c640 + c9fd13a commit cf76225
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build package and publish to PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOMTOOLKIT_API_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_TOM_REGISTRATION_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[metadata]
name = tom-registration
version = 0.1
description = Reusable TOMToolkit app to support multiple user registration flows.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -32,6 +31,9 @@ keywords =
science

[options]
setup_requires =
setuptools_scm
wheel
install_requires =
tomtoolkit >= 2.5
include_package_data = true
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from setuptools import setup

setup() # configuration resides in setup.cfg file
setup( # configuration resides in setup.cfg file
use_scm_version=True, # setuptools_scm does not support setup.cfg
)

0 comments on commit cf76225

Please sign in to comment.