-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from laws-africa/pypi
Publish to pypi
- Loading branch information
Showing
10 changed files
with
104 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Publish to PyPI | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
pypi-publish: | ||
name: Upload release to PyPI | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/bluebell-akn | ||
permissions: | ||
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Build distribution | ||
run: python -m pip install build && python -m build | ||
|
||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "2.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools_scm[toml]>=6.2", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bluebell-akn" | ||
description = "Transforms text to and from Akoma Ntoso" | ||
authors = [ | ||
{ name="Laws.Africa", email="[email protected]" }, | ||
] | ||
license = {text = "LGPLv3+"} | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Text Processing", | ||
"Topic :: Text Processing :: Markup :: XML", | ||
"Intended Audience :: Legal Industry", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"cobalt>=7.0.0", | ||
"lxml>=3.4.1", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/laws-africa/bluebell" | ||
"Bug Tracker" = "https://github.com/laws-africa/bluebell/issues" | ||
|
||
[project.optional-dependencies] | ||
test = ["nose", "flake8"] | ||
|
||
[project.scripts] | ||
bluebell = "bluebell.cli:main" | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["bluebell"] # package names should match these glob patterns (["*"] by default) | ||
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default) | ||
namespaces = false | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "bluebell.__version__"} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,3 @@ | ||
from setuptools import setup, find_packages | ||
from codecs import open | ||
from os import path | ||
from setuptools import setup | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the relevant file | ||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
with open(path.join(here, 'VERSION')) as f: | ||
version = f.read().strip() | ||
|
||
setup( | ||
name='bluebell', | ||
|
||
# Versions should comply with PEP440. For a discussion on single-sourcing | ||
# the version across setup.py and the project code, see | ||
# https://packaging.python.org/en/latest/single_source_version.html | ||
version=version, | ||
|
||
description='Transforms text to and from Akoma Ntoso', | ||
long_description=long_description, | ||
|
||
# The project's main homepage. | ||
url='https://github.com/laws-africa/bluebell', | ||
|
||
# Author details | ||
author='Laws.Africa', | ||
author_email='[email protected]', | ||
|
||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 5 - Production/Stable', | ||
|
||
# Indicate who your project is intended for | ||
'Intended Audience :: Developers', | ||
'Topic :: Text Processing', | ||
'Topic :: Text Processing :: Markup :: XML', | ||
'Intended Audience :: Legal Industry', | ||
|
||
# License | ||
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
|
||
# You can just specify the packages manually here if your project is | ||
# simple. Or you can use find_packages(). | ||
packages=find_packages(exclude=['docs', 'tests*']), | ||
include_package_data=True, | ||
|
||
scripts=['bin/bluebell'], | ||
|
||
# List run-time dependencies here. These will be installed by pip when | ||
# your project is installed. For an analysis of "install_requires" vs pip's | ||
# requirements files see: | ||
# https://packaging.python.org/en/latest/requirements.html | ||
install_requires=[ | ||
'lxml >= 3.4.1', | ||
'cobalt >= 7.0.0', | ||
], | ||
|
||
# List additional groups of dependencies here (e.g. development | ||
# dependencies). You can install these using the following syntax, | ||
# for example: | ||
# $ pip install -e .[dev,test] | ||
extras_require={ | ||
'dev': ['nose', 'flake8'], | ||
'test': ['nose', 'flake8'], | ||
}, | ||
) | ||
setup() |
This file was deleted.
Oops, something went wrong.