File tree Expand file tree Collapse file tree 3 files changed +34
-3
lines changed Expand file tree Collapse file tree 3 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Publish sdist tarball to PyPi
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v[0-9]+.[0-9]+.[0-9]+'
7+
8+ jobs :
9+ build-n-publish :
10+
11+ name : Build and publish on PyPI
12+
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+
17+ - uses : actions/checkout@v4.2.0
18+
19+ - name : Set up Python 3.8
20+ uses : actions/setup-python@v5.2.0
21+ with :
22+ python-version : 3.8
23+
24+ - name : Build a source tarball
25+ run : python setup.py sdist
26+
27+ - name : Publish distribution package to PyPI
28+ uses : pypa/gh-action-pypi-publish@release/v1
29+ with :
30+ user : __token__
31+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 11# Contribution Guide
22
3- We would love for you to contribute to the kg -inference project and help make it better than it is
3+ We would love for you to contribute to the knowledge-graph -inference project and help make it better than it is
44today.
55As a contributor, here are the guidelines we would like you to follow:
66
Original file line number Diff line number Diff line change 99 long_description = f .read ()
1010
1111setup (
12- name = "inference_tools " ,
12+ name = "knowledge-graph-inference " ,
1313 author = "Blue Brain Project, EPFL" ,
1414 use_scm_version = {
1515 "relative_to" : __file__ ,
2727 "setuptools_scm" ,
2828 ],
2929 install_requires = [
30- "nexusforge@git+https://github.com/BlueBrain/nexus-forge "
30+ "nexusforge"
3131 ],
3232 extras_require = {
3333 "dev" : [
You can’t perform that action at this time.
0 commit comments