Skip to content

Commit

Permalink
[Fix] Update name on PyPI
Browse files Browse the repository at this point in the history
Summary: Simplify the name on PyPI, and some minor infra updates.

Test Plan: -

Reviewed-by: -

Issue: -
  • Loading branch information
oraluben authored May 11, 2022
1 parent c3b4592 commit 5c7d113
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ jobs:
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.3.1
run: python -m pip install cibuildwheel==2.5.0

- name: Build wheels
run: python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: cp39-* cp310-* *-manylinux_x86_64 *-macosx_x86_64
- uses: actions/upload-artifact@v2
with:
name: dist
Expand Down
9 changes: 6 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
code-data-share-for-python
~~~~~~~~~~~~~~~~~~~~~~~~~~

.. image:: https://img.shields.io/pypi/pyversions/code-data-share-for-python
.. image:: https://img.shields.io/pypi/implementation/code-data-share-for-python
.. image:: https://img.shields.io/pypi/pyversions/code-data-share
:target: https://pypi.org/project/code-data-share/
.. image:: https://img.shields.io/pypi/implementation/code-data-share
:target: https://pypi.org/project/code-data-share/
.. image:: https://img.shields.io/badge/platform-linux--64%20%7C%20osx--64-lightgrey
:target: https://pypi.org/project/code-data-share/

Introduction
============
Expand Down Expand Up @@ -32,7 +35,7 @@ Install
-------
::

pip install code-data-share-for-python
pip install code-data-share

Determine the imported packages
-------------------------------
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja"]

[tool.pytest.ini_options]
testpaths = ["tests"]

[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-*"
archs = ["auto64"]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
i.unlink()

setup(
name='code-data-share-for-python',
name='code-data-share',
version='0.0.1',
packages=['cds'],
package_dir={'': 'src'},
Expand All @@ -21,7 +21,7 @@
'Development Status :: 3 - Alpha',
'Operating System :: MacOS :: MacOS X',
# 'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down

0 comments on commit 5c7d113

Please sign in to comment.